Created
July 15, 2014 17:05
-
-
Save JesseBilsten/eae944c809ee91f8210e to your computer and use it in GitHub Desktop.
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
| if has("gui_macvim") | |
| " Fullscreen takes up entire screen | |
| set fuoptions=maxhorz,maxvert | |
| "key mapping for window navigation | |
| map <C-h> <C-w>h | |
| map <C-j> <C-w>j | |
| map <C-k> <C-w>k | |
| map <C-l> <C-w>l | |
| endif | |
| " Don't beep | |
| set visualbell | |
| " Start without the toolbar | |
| set guioptions-=T | |
| " Default gui color scheme | |
| color molokai | |
| " Default font | |
| "set guifont=Menlo:h14 | |
| "set guifont=Inconsolatag:h14 | |
| set guifont=Inconsolata-dz\ for\ Powerline:h14 | |
| " Command-W should close buffer | |
| macmenu &File.Close key=<nop> | |
| map <D-w> :wq<cr> | |
| set guioptions-=L | |
| set guioptions-=r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment