Created
January 31, 2011 21:45
-
-
Save jsmestad/804887 to your computer and use it in GitHub Desktop.
customizing janus
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
| color jellybeans+ | |
| " Don't show scrollbars | |
| set guioptions-=r | |
| set guioptions-=L | |
| set guioptions-=T |
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 Font | |
| set guifont=PanicSans:h15 | |
| " Set map leader | |
| let mapleader = "," | |
| " Create directional shortcuts for moving among between splits | |
| nmap <C-j> <C-W>j | |
| nmap <C-k> <C-W>k | |
| nmap <C-l> <C-W>l | |
| nmap <C-h> <C-W>h | |
| " Remap jj or jk or to be the same as Esc to leave Insert mode. | |
| imap ii <Esc> | |
| " NERDTree {{{ | |
| let NERDChristmasTree = 1 | |
| let NERDTreeHighlightCursorline = 1 | |
| let NERDTreeShowBookmarks = 1 | |
| " let NERDTreeShowHidden = 1 | |
| let NERDTreeIgnore = ['.vim$', '\~$', '.svn$', '\.git$', '.DS_Store'] | |
| nmap <F2> :NERDTreeToggle<CR> | |
| map nt :NERDTreeToggle<CR> | |
| " }}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment