Created
February 17, 2016 22:09
-
-
Save xanecs/685f54de4b88b1cc1285 to your computer and use it in GitHub Desktop.
This file contains 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
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
set autoindent | |
let g:airline_powerline_fonts = 1 | |
let g:airline#extensions#tabline#enabled = 1 | |
nnoremap <C-i> :bnext<CR> | |
nnoremap <C-u> :bprev<CR> | |
nnoremap <C-o> :e | |
nnoremap <C-s> :w<CR> | |
inoremap <C-s> <esc>:w<CR>I | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
set number | |
highlight LineNr ctermfg=grey | |
nnoremap <C-n> :NERDTreeFocusToggle<CR> | |
autocmd VimEnter * NERDTreeTabsOpen | |
autocmd VimEnter * NERDTreeFocusToggle | |
set noshowmode | |
command! BW :bn|:bd# | |
nnoremap <C-w> :BW<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment