Skip to content

Instantly share code, notes, and snippets.

@rmw
Last active December 20, 2015 12:59
Show Gist options
  • Select an option

  • Save rmw/6135683 to your computer and use it in GitHub Desktop.

Select an option

Save rmw/6135683 to your computer and use it in GitHub Desktop.
local overrides on haw comp
color solarized
set guifont=Monaco:h18.00
set cc=80
set wildmode=list:longest
set vb
set guioptions=egmrt
set clipboard=unnamed
au BufNewFile,BufRead *.ejs set filetype=html
if filereadable(expand("~/.gvimrc.local"))
source ~/.gvimrc.local
endif
color desert
set guifont=Monaco:h18.00
set cc=80
set vb
au BufNewFile,BufRead *.ejs set filetype=html
" Maintaining the visual line selection after indenting with '>' or '<'
vmap > >gv
vmap < <gv
" search things
set incsearch" do incremental searching
set nohlsearch " disable long term highlighting for searches
set scrolloff=1
" set folding things
set foldmethod=indent
set nofoldenable
set foldcolumn=1
" insert a carrage return exactly where you are and moves to the start of that line. The opposite of <Shift + j>
map <leader>j i<CR><ESC>^
color vividchalk
set background=dark
set wildmode=list:longest,full
set guifont=Monaco:h18.00
set vb
set spell
set clipboard=unnamed
au BufNewFile,BufRead *.ejs set filetype=html
if filereadable(expand("~/.gvimrc.local"))
source ~/.gvimrc.local
endif
color desert
set guifont=Monaco:h18.00
set vb
au BufNewFile,BufRead *.ejs set filetype=html
" Maintaining the visual line selection after indenting with '>' or '<'
vmap > >gv
vmap < <gv
" search things
set incsearch" do incremental searching
set nohlsearch " disable long term highlighting for searches
set scrolloff=1
" set folding things
set foldmethod=indent
" insert a carrage return exactly where you are and moves to the start of that line. The opposite of <Shift + j>
map <leader>j i<CR><ESC>^
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment