-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc_root
39 lines (35 loc) · 886 Bytes
/
.vimrc_root
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
"set rtp+=~/.vim/bundle/Vundle.vim
"call vundle#begin()
" ==== Completion
" Plugin 'Valloric/YouCompleteMe'
" ==== vim-surround
" Plugin 'tpope/vim-surround'
" ==== File tree
" Plugin 'scrooloose/nerdtree'
" ==== plugin manager
" Plugin 'VundleVim/Vundle.vim'
" call vundle#end()
inoremap jk <esc>
set number
set hlsearch incsearch
set showmatch
set expandtab
set autoindent
set shiftwidth=4
set encoding=UTF-8
set st=4 sw=4 et
set tabstop=4
set nocompatible
syntax enable
filetype plugin on
set path+=**
set wildmenu
set statusline=%f\ -\ FileType:\ %y
"command! MakeTags !ctags -R .
let g:netrw_banner=0 " disable banner
let g:netrw_browser_split=4 " open in prior window
let g:netrw_altv=1 " open split 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\+'
nnoremap ,py :0read ~/gits/python/