Last active
December 20, 2015 12:59
-
-
Save rmw/6135683 to your computer and use it in GitHub Desktop.
local overrides on haw comp
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 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 |
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 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>^ |
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 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 |
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 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