-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathideavimrc
73 lines (58 loc) · 1.66 KB
/
ideavimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
let mapleader = " "
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Options
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set ideajoin
set idearefactormode=keep
set number
set relativenumber
set hlsearch
set incsearch
set ignorecase
set smartcase
set autoindent
set smartindent
set noerrorbells
set visualbell
set clipboard+=unnamedplus
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Mappings
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" navigation
nmap <C-h> <C-w>h
nmap <C-l> <C-w>l
nmap <C-j> <C-w>j
nmap <C-k> <C-w>k
" better indenting
vmap < <gv
vmap > >gv
" save file
noremap <C-s> :w<CR><Esc>
" clear highlighting
nnoremap <Esc><Esc> :noh<CR>
nnoremap <leader>e :NERDTreeToggle<CR>
nnoremap <leader>E :NERDTreeFocus<CR>
map gs <Plug>(easymotion-s)
map s <Plug>(easymotion-f)
map S <Plug>(easymotion-F)
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Actions
" don't use noremap because <action> is mapped already
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
nmap <S-h> <action>(PreviousTab)
nmap <S-l> <action>(NextTab)
nmap <leader>bd <action>(CloseEditor)
nmap <leader>bP <action>(CloseAllEditorsButActive)
nmap <leader>ft <action>(ActivateTerminalToolWindow)
nmap <leader>cr <action>(RenameElement)
nmap <leader>cg <action>(Generate)
nmap gd <action>(GotoDefinition)
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Plugins
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Plug 'easymotion/vim-easymotion'
Plug 'preservim/nerdtree'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-surround'
let g:NERDTreeMapActivateNode='l'
let g:NERDTreeMapJumpParent='h'