aboutsummaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
authorKarel Kočí <karel.koci@nic.cz>2020-06-16 13:13:29 +0200
committerKarel Kočí <karel.koci@nic.cz>2020-06-16 13:13:29 +0200
commit05744280dea215cd9df8350b6e192ae4027ca81b (patch)
treee34c75694b5351c4fd425165eb2644386ec3958c /vimrc
parent866858b6e114686774d1034d6af3040b928c97e3 (diff)
downloadmyconfigs-05744280dea215cd9df8350b6e192ae4027ca81b.tar.gz
myconfigs-05744280dea215cd9df8350b6e192ae4027ca81b.tar.bz2
myconfigs-05744280dea215cd9df8350b6e192ae4027ca81b.zip
vimrc: Add GitIgnore to load .gitignore file to vim
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc7
1 files changed, 6 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index 1178710..1078432 100644
--- a/vimrc
+++ b/vimrc
@@ -113,7 +113,12 @@ cmap w!! w !sudo tee >/dev/null %
cabbrev E Explore
let g:netrw_banner=0
let g:netrw_liststyle=1
-let g:netrw_list_hide='\(^\|\s\s\)\zs\.\S\+'
+function GitIgnore()
+ " Possibly find and include all lower .gitignore files?
+ let g:netrw_list_hide='\(^\|\s\s\)\zs\.\S\+,' . netrw_gitignore#Hide()
+endfunction
+command GitIgnore call GitIgnore()
+GitIgnore
" Some fast buffer switching and opening of new files
nnoremap <C-C><CR> :Explore<CR>
nnoremap <C-C>l :bnext<CR>