Created
September 25, 2015 14:19
-
-
Save tomwolber/c8c46e6338be3fc1862a 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 expandtab smarttab | |
set shiftwidth=2 | |
set tabstop=2 | |
set number ruler | |
set nowrap backspace=indent,eol,start | |
set laststatus=2 | |
set linespace=0 | |
set cursorline | |
set cursorcolumn | |
"----COLORS----" | |
set t_Co=256 | |
syntax on | |
colorscheme luna | |
filetype plugin on | |
hi CursorLine ctermbg=237 guibg=#3a3a3a cterm=none gui=none | |
hi CursorColumn ctermbg=237 guibg=#3a3a3a cterm=none gui=none | |
"----PRETTIFY----" | |
highlight VertSplit ctermbg=DarkGray ctermfg=DarkGray | |
set fillchars="" | |
hi TabLineFill guifg=#999 guibg=#222 gui=none ctermfg=254 ctermbg=238 cterm=none | |
"----Commands that start with '\'----" | |
map <Leader>n <plug>NERDTreeTabsToggle<CR> | |
"----DISABLE ARROW KEYS----" | |
map <Left> <Nop> | |
map <Right> <Nop> | |
map <Up> <Nop> | |
map <Down> <Nop> | |
"----MISFIRES----" | |
command W w | |
command Q q | |
command Wq wq | |
command WQ wq | |
command Bn bn | |
"----AIRLINE PLUGIN----" | |
let g:airline_powerline_fonts = 1 | |
let g:airline_section_y = 0 | |
let g:airline_section_warning = 0 | |
"----MAKE PATHOGEN WORK----" | |
execute pathogen#infect() | |
set foldmethod=syntax |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment