-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.ideavimrc
260 lines (202 loc) · 6.81 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
" CJAPPL .vimrc
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" .OO
" .OOOO
" .OOOO'
" OOOO' .-~~~~-.
" OOO' / (o)(o)
" .OOOOOO `O .OOOOOOO. / .. |
" .OOOOOOOOOOOO OOOOOOOOOO/\ \____/
" .OOOOOOOOOOOOOOOOOOOOOOOO/ \\ ,\_/
" .OOOOOOO%%OOOOOOOOOOOOO(#/\ /.
" .OOOOOO%%%OOOOOOOOOOOOOOO\ \\ \/OO.
" .OOOOO%%%%OOOOOOOOOOOOOOOOO\ \/OOOO.
" OOOOO%%%%OOOOOOOOOOOOOOOOOOO\_\/\OOOOO
" OOOOO%%%OOOOOOOOOOOOOOOOOOOOO\###)OOOO
" OOOOOO%%OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
" OOOOOOO%OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
" `OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO'
" .-~~\OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO'
" / _/ `\(#\OOOOOOOOOOOOOOOOOOOOOOOOOOOO'
" / / \ / `~~\OOOOOOOOOOOOOOOOOOOOOOOOOO'
"|/' `\// \\ \OOOOOOOOOOOOOOOOOOOOOOOO'
" `-.__\_,\OOOOOOOOOOOOOOOOOOOOO'
" `OO\#)OOOOOOOOOOOOOOOOOOO'
" `OOOOOOOOO''OOOOOOOOO'
" `""""""' `""""""'
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Vundle
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set shell=bash
set nocompatible " be iMproved, required
filetype off " required
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Colors and Fonts
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Enable syntax highlighting
syntax enable
"try
" colorscheme desert
"catch
"endtry
if exists('+termguicolors')
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
set termguicolors
endif
let ayucolor="dark" " for dark version of theme
colorscheme ayu
set background=dark
" Set utf8 as standard encoding and en_US as the standard language
set encoding=utf8
" Use unix as the standard file type
set ffs=unix
" highlight colors
"hi Search ctermbg=grey
"hi Search ctermfg=black
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => General
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" file browsing with netrw
let g:netrw_banner=0 " disable banner
let g:netrw_browse_split=4 " open in prior window
let g:netrw_altv=1 "open splits to the right with v
let g:netrw_liststyle=3 "tree
" allow for recursive file searching
set path+=**
" Set line numbers
set number
" Sets how many lines of history VIM has to remember
set history=100
" Enable filetype plugins
filetype plugin on
filetype indent on
" Set to auto read when a file is changed
set autoread
" autoread even when changed outside of vim
au FocusGained,BufEnter * :silent! !
au FocusLost,WinLeave * :silent! w
" With a map leader it's possible to do extra key combinations
" like <leader>w saves the current file
let mapleader=" "
" Fast saving
nmap <leader>w :w!<cr>
" Fast search
nmap <leader>r :Rg
" Lazy macro repeat
nmap <leader>m @@
" start typing a search/replace command using current word
nnoremap <Leader>s :%s/\<<C-r><C-w>\>//gc<Left><Left><Left>
" Disabling auto commenting
autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => VIM user interface
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Set 7 lines to the cursor - when moving vertically using j/k
set scrolloff=7
" Turn on the WiLd menu, tab completion of commands
set wildmenu
set wildmode=list:longest,full
" Ignore compiled files
set wildignore=*.o,*~,*.pyc,*.log
if has("win16") || has("win32")
set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/.DS_Store
else
set wildignore+=.git\*,.hg\*,.svn\*,.tox\*,.build\*,.dist\*
endif
"Always show current position
set ruler
" Configure backspace so it acts as it should act
set backspace=eol,start,indent
" allows h and l to move to the next line if at a boundary
set whichwrap+=h,l
" Ignore case when searching
set ignorecase
" When searching try to be smart about cases, case ignored until caps typed
set smartcase
" Highlight search results
set hlsearch
" incrementally search, moving each time a key is pressed
set incsearch
" Don't redraw while executing macros (good performance config)
set lazyredraw
" split and automatically move to new pane
set splitright
" Show matching brackets when text indicator is over them
set showmatch
" How many tenths of a second to blink when matching brackets
set mat=2
" No annoying sound on errors
set noerrorbells
set novisualbell
set t_vb=
set tm=500
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Files, backups and undo
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Turn backup off, since most stuff is in SVN, git et.c anyway...
set nobackup
set nowb
set noswapfile
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Text, tab and indent related
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Use spaces instead of tabs
set expandtab
" Be smart when using tabs
set smarttab
" 1 tab == 4 spaces
set shiftwidth=4
set tabstop=4
set ai "Auto indent
set wrap "Wrap lines
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Moving around, tabs, windows and buffers
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Treat long lines as break lines (useful when moving around in them)
map j gj
map k gk
" Smart way to move between windows
map <C-h> <C-W>h
map <C-l> <C-W>l
" Useful mappings for managing tabs
map <silent> <leader>t :tabnew<cr>
" Splits
map <leader>v :vs<cr>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Misc
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Simplify pasting and copying to system clipboard
map <leader>y "*y
map <leader>Y "*e
map <leader>p "*p
map <leader>P "*P
" set colon to semicolon
nnoremap ; :
# ideavim only, try to mirror init.vim
nnoremap <c-p> :action SearchEverywhere<CR>
nnoremap gi :action GotoImplementation<CR>
nnoremap gu :action FindUsages<CR>
nnoremap gh :action CallHierarchy<CR>
nnoremap <leader>rg :action FindInPath<CR>
nnoremap <c-j> :action GotoNextError<CR>
nnoremap <c-k> :action GotoPreviousError<CR>
nnoremap <silent> <tab> :action GotoRelated<CR>
nnoremap <leader>f :action ShowIntentionActions<CR>
nnoremap <leader>e :action ShowErrorDescription<CR>
nnoremap <leader>s :action RenameElement<CR>
nnoremap <leader>v :action CIDR.Lang.IntroduceVariable<CR>
nnoremap <leader>c :call CopilotToggle()<cr>
let g:copilotEnabled=0
function! CopilotToggle()
if g:copilotEnabled
let g:copilotEnabled=0
:action copilot.disableCopilot
else
let g:copilotEnabled=1
:action copilot.enableCopilot
endif
endfunction
"nnoremap <leader>cx :action copilot.disableCopilot<CR>
"nnoremap <leader>xc :action copilot.enableCopilot<CR>