aboutsummaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2025-03-18 00:15:58 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2025-03-18 00:15:58 +0100
commit473a42f98b8444cf8213227b4d5ce4d215811ad9 (patch)
treeb9094531d47fed95bd5c60f2b13d1dcfdb112b9c /.vimrc
parent2fc6e2245701c92139bb9c7455c5953f739f65ca (diff)
downloaddotfiles-473a42f98b8444cf8213227b4d5ce4d215811ad9.tar.gz
Update
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/.vimrc b/.vimrc
index 225cf3b..283f09f 100644
--- a/.vimrc
+++ b/.vimrc
@@ -15,18 +15,18 @@ nnoremap <C-Right> :bnext<cr>
15nnoremap <C-Left> :bprevious<cr> 15nnoremap <C-Left> :bprevious<cr>
16nnoremap <C-q> :copen<cr> 16nnoremap <C-q> :copen<cr>
17nnoremap <C-b> :CtrlPBuffer<cr> 17nnoremap <C-b> :CtrlPBuffer<cr>
18nnoremap <Leader>e :nohlsearch<cr>
18nnoremap <Leader>q :ALEHover<cr> 19nnoremap <Leader>q :ALEHover<cr>
19nnoremap <Leader>w :ALEDetail<cr> 20nnoremap <Leader>w :ALEDetail<cr>
20nnoremap <Leader>e :nohlsearch<CR> 21nnoremap <Leader>gc :r !< % lazycommit<cr>
21 22
22nmap <silent> gr :ALEFindReferences<cr> 23nmap <silent> gr :ALEFindReferences<cr>
23nmap <silent> gd :ALEGoToDefinition<cr> 24nmap <silent> gd :ALEGoToDefinition<cr>
24nmap <silent> re :ALERename<cr> 25nmap <silent> re :ALERename<cr>
25 26
27let g:ctrlp_use_caching = 0
26let g:ale_completion_enabled = 0 28let g:ale_completion_enabled = 0
27let g:ale_hover_to_floating_preview = 1 29let g:ale_hover_to_floating_preview = 1
28let g:ale_detail_to_floating_preview = 1 30let g:ale_detail_to_floating_preview = 1
29let g:ale_virtualtext_cursor = 0 31let g:ale_virtualtext_cursor = 0
30let g:ale_set_quickfix = 1 32let g:ale_set_quickfix = 1
31let g:ctrlp_use_caching = 0
32let g:ale_linters = { 'c': ['clangd'] }