Created
March 23, 2016 23:09
-
-
Save wckdouglas/bc57c9a694883d05f879 to your computer and use it in GitHub Desktop.
for macvim
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 guioptions=T | |
| colorscheme onedark | |
| let g:airline#extensions#tabline#enabled = 1 | |
| let g:airline_theme='onedark' | |
| set laststatus=2 | |
| "tab | |
| noremap <D-1> :tabn 1<CR> | |
| noremap <D-2> :tabn 2<CR> | |
| noremap <D-3> :tabn 3<CR> | |
| noremap <D-4> :tabn 4<CR> | |
| noremap <D-5> :tabn 5<CR> | |
| noremap <D-6> :tabn 6<CR> | |
| noremap <D-7> :tabn 7<CR> | |
| noremap <D-8> :tabn 8<CR> | |
| noremap <D-9> :tabn 9<CR> | |
| "tab name | |
| au BufEnter * set guitablabel=%{fnamemodify(bufna |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment