Skip to content

Instantly share code, notes, and snippets.

@anairinac
Last active February 22, 2018 16:48
Show Gist options
  • Save anairinac/d99111ae64bf4129ee2b3b6a27bbebbb to your computer and use it in GitHub Desktop.
Save anairinac/d99111ae64bf4129ee2b3b6a27bbebbb to your computer and use it in GitHub Desktop.
Vim configuration
if &term == "screen"
set t_Co=256
elseif &term == "xterm"
set t_Co=256
endif
" Pathogen plugin manager config
execute pathogen#infect()
syntax on
filetype plugin indent on
" Always show line numbers
set number
" Always wrap long lines
" set wrap
" Solarized VIM color theme config
syntax enable
set background=dark
colorscheme solarized
" Airline configurations
let g:airline_theme='luna'
let g:airline_powerline_fonts = 1
let g:airline_skip_empty_sections = 1
" Downloads to do:
" Pathogen plugin manager:
" vim-airline: https://vimawesome.com/plugin/vim-airline
" vim-airline-themes: https://github.com/vim-airline/vim-airline-themes
" vim-surround
" indent-guides: https://vimawesome.com/plugin/indent-guides
" delimitmate: https://vimawesome.com/plugin/delimitmate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment