Skip to content

Instantly share code, notes, and snippets.

@jsmestad
Created January 31, 2011 21:45
Show Gist options
  • Select an option

  • Save jsmestad/804887 to your computer and use it in GitHub Desktop.

Select an option

Save jsmestad/804887 to your computer and use it in GitHub Desktop.
customizing janus
color jellybeans+
" Don't show scrollbars
set guioptions-=r
set guioptions-=L
set guioptions-=T
" 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