forked from PufferAI/PufferTank
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
26 lines (20 loc) · 628 Bytes
/
vimrc
File metadata and controls
26 lines (20 loc) · 628 Bytes
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
filetype plugin indent on
set nocompatible
set tabstop=4
set shiftwidth=4
set expandtab
syntax enable
filetype plugin on
" Search down into subfolders
set path+=**
" Display all matching files when we tab complete
set wildmenu
" Create the tags file (may need to install ctags first)
command! MakeTags !ctags -R .
" Tweaks for browsing
let g:netrw_banner=0 " disable annoying banner
let g:netrw_browse_split=4 " open in prior window
let g:netrw_altv=1 " open splits to the right
let g:netrw_liststyle=3 " tree view
let g:netrw_list_hide=netrw_gitignore#Hide()
let g:netrw_list_hide.=',(^|\s\s)\zs.\S+'