aboutsummaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-02-05 04:09:16 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-02-05 04:09:16 +0100
commit55bb362f5380c3887e31388501e4ef9d6a1df923 (patch)
tree81cbbdbb1f124818db64ffc1184a8441fde16116 /.vimrc
parent5e253e8615d1a8578205dcff8380aca20fa0f047 (diff)
downloaddotfiles-55bb362f5380c3887e31388501e4ef9d6a1df923.tar.gz
Update
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc10
1 files changed, 6 insertions, 4 deletions
diff --git a/.vimrc b/.vimrc
index 133ffe5..6b08d02 100644
--- a/.vimrc
+++ b/.vimrc
@@ -6,13 +6,14 @@ call plug#begin()
6 Plug 'mitjafelicijan/sniper.vim' 6 Plug 'mitjafelicijan/sniper.vim'
7 Plug 'ctrlpvim/ctrlp.vim' 7 Plug 'ctrlpvim/ctrlp.vim'
8 Plug 'dense-analysis/ale' 8 Plug 'dense-analysis/ale'
9 Plug 'airblade/vim-gitgutter'
9call plug#end() 10call plug#end()
10 11
11set encoding=utf8 spelllang=en_us laststatus=2 tabstop=4 shiftwidth=4 12set encoding=utf8 spelllang=en_us laststatus=2 tabstop=4 shiftwidth=4
12set number autoindent cursorline ignorecase hlsearch incsearch signcolumn=yes 13set number autoindent cursorline ignorecase hlsearch incsearch signcolumn=yes
13set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300 14set hidden nowrap nobackup noswapfile noundofile autoread updatetime=300
14set backspace=indent,eol,start completeopt=menuone 15set backspace=indent,eol,start completeopt=menuone path+=**
15set path+=** wildignore+=tags,*.o,*.a,*.so 16set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/vendor,tags,*.o,*.a,*.so
16colorscheme wildcharm 17colorscheme wildcharm
17 18
18nnoremap <C-Right> :bnext<CR> 19nnoremap <C-Right> :bnext<CR>
@@ -33,9 +34,10 @@ nmap <silent> gr :ALEFindReferences -quickfix<CR>:sleep 100m<CR>:copen<CR>
33nmap <silent> gd :ALEGoToDefinition<CR> 34nmap <silent> gd :ALEGoToDefinition<CR>
34nmap <silent> re :ALERename<CR> 35nmap <silent> re :ALERename<CR>
35 36
36let g:ctrlp_use_caching = 0 37" let g:ctrlp_use_caching = 0
37let g:ctrlp_working_path_mode = '' 38" let g:ctrlp_working_path_mode = ''
38 39
40let g:ctrlp_working_path_mode = 'ra'
39let g:ale_hover_to_floating_preview = 1 41let g:ale_hover_to_floating_preview = 1
40let g:ale_detail_to_floating_preview = 1 42let g:ale_detail_to_floating_preview = 1
41let g:ale_floating_window_border = 0 43let g:ale_floating_window_border = 0