Last active
January 25, 2018 04:56
-
-
Save brunston/5d808780dcb0854cb333e901c0a35201 to your computer and use it in GitHub Desktop.
brunston_vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set fileformat=unix | |
set nocompatible | |
set number | |
set backspace=2 | |
set smartcase | |
set softtabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
set autoindent | |
"folding settings | |
set foldmethod=indent | |
set foldlevel=99 | |
nnoremap <space> za | |
"split settings | |
nnoremap <C-J> <C-W><C-J> | |
nnoremap <C-K> <C-W><C-K> | |
nnoremap <C-H> <C-W><C-H> | |
nnoremap <C-L> <C-W><C-L> | |
"netrw Ex options | |
let g:netrw_winsize=12 | |
let g:netrw_browse_split=2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment