Skip to content

Instantly share code, notes, and snippets.

@tomwolber
Created September 25, 2015 14:19
Show Gist options
  • Save tomwolber/c8c46e6338be3fc1862a to your computer and use it in GitHub Desktop.
Save tomwolber/c8c46e6338be3fc1862a to your computer and use it in GitHub Desktop.
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