Last active
July 17, 2020 07:17
-
-
Save ggl/2fc62291553f3c494d4a30cf04118177 to your computer and use it in GitHub Desktop.
This file contains 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 nocompatible | |
set backspace=2 | |
set autoindent noexpandtab softtabstop=-1 tabstop=4 shiftwidth=4 | |
set ruler | |
syntax on | |
colorscheme torte |
This file contains 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 nocompatible | |
set backspace=2 | |
set autoindent noexpandtab softtabstop=-1 tabstop=4 shiftwidth=4 | |
set ruler | |
execute pathogen#infect() | |
" load lightline and set it to hide the mode | |
let g:lightline = { 'colorscheme': 'wombat' } | |
set noshowmode | |
colorscheme monokai-tasty | |
" map crtl-l to clear search highlighting | |
nnoremap <C-L> :nohlsearch<CR><C-L> | |
" disable stupid sqlcomplete | |
let g:omni_sql_no_default_maps = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment