Last active
December 21, 2015 10:29
-
-
Save Rembane/6292258 to your computer and use it in GitHub Desktop.
My Vim config
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
| " Inget pip goddamit! | |
| set visualbell | |
| syntax on | |
| set autoindent | |
| set nosmartindent | |
| set tabstop=4 | |
| set expandtab | |
| set shiftwidth=4 | |
| set hlsearch " Higliht searched words | |
| filetype plugin indent on | |
| set gfn=DejaVu\ Sans\ Mono\ 10 | |
| " Taglist | |
| " let Tlist_Ctags_Cmd = "/usr/bin/ctags" | |
| " let Tlist_WinWidth = 50 | |
| " map <F4> :TlistToggle<cr> | |
| " Colorscheme stuff | |
| " Colors in terminal: | |
| set t_Co=256 | |
| " High contrast | |
| :let g:zenburn_high_Contrast = 1 | |
| :colorscheme zenburn | |
| " Search hilightning | |
| :hi search ctermbg=223 ctermfg=238 | |
| :hi incsearch ctermbg=216 ctermfg=242 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment