2016-06-02 18:57:15 -04:00
|
|
|
execute pathogen#infect()
|
|
|
|
|
|
|
|
" Pathogen modules used:
|
|
|
|
" * git://github.com/tpope/vim-fugitive.git
|
|
|
|
" * git://github.com/tpope/vim-git.git
|
|
|
|
" * https://github.com/tpope/vim-sensible.git
|
|
|
|
" * https://github.com/rust-lang/rust.vim.git
|
2016-07-25 00:47:30 -04:00
|
|
|
" * https://github.com/pearofducks/ansible-vim.git
|
2016-07-18 18:00:17 -04:00
|
|
|
" * https://github.com/airblade/vim-gitgutter
|
|
|
|
" * https://github.com/bling/vim-airline
|
2016-07-21 13:58:56 -04:00
|
|
|
" * https://github.com/vim-airline/vim-airline-themes
|
2016-07-18 18:00:17 -04:00
|
|
|
" * https://github.com/pangloss/vim-javascript
|
2016-07-21 13:58:56 -04:00
|
|
|
" * https://github.com/tpope/vim-surround
|
|
|
|
" * https://github.com/scrooloose/syntastic
|
2017-01-19 17:58:25 -05:00
|
|
|
" * https://github.com/hashivim/vim-terraform.git
|
2017-02-10 19:04:41 -05:00
|
|
|
" * https://github.com/tangledhelix/vim-kickstart.git
|
2016-06-02 18:57:15 -04:00
|
|
|
"
|
2016-09-12 15:05:54 -04:00
|
|
|
" Pathogen colorschemes used: (vimcolors.com for more)
|
|
|
|
" * https://github.com/Marfisc/vorange.git
|
2016-06-02 18:57:15 -04:00
|
|
|
" * https://github.com/jnurmine/Zenburn.git
|
|
|
|
" * https://github.com/sjl/badwolf.git
|
2016-09-12 15:05:54 -04:00
|
|
|
" * https://github.com/sheerun/vim-wombat-scheme.git
|
|
|
|
" * git://github.com/altercation/vim-colors-solarized.git
|
|
|
|
" * https://github.com/YorickPeterse/happy_hacking.vim.git
|
|
|
|
" * https://github.com/owickstrom/vim-colors-paramount.git
|
|
|
|
" * https://github.com/pbrisbin/vim-colors-off.git
|
|
|
|
" * https://github.com/kristijanhusak/vim-hybrid-material.git
|
2016-06-02 18:57:15 -04:00
|
|
|
|
|
|
|
syntax on
|
|
|
|
filetype plugin indent on
|
2014-11-04 14:58:42 -05:00
|
|
|
|
2016-06-02 18:57:15 -04:00
|
|
|
set softtabstop=2
|
|
|
|
set shiftwidth=2
|
2014-11-04 14:58:42 -05:00
|
|
|
set number
|
2016-06-02 18:57:15 -04:00
|
|
|
"set smartindent
|
2016-08-04 20:04:26 -04:00
|
|
|
set expandtab
|
2016-06-02 18:57:15 -04:00
|
|
|
set cindent
|
2014-11-04 14:58:42 -05:00
|
|
|
set list
|
|
|
|
set listchars=tab:▻\ ,trail:◈
|
|
|
|
|
2016-06-02 18:57:15 -04:00
|
|
|
set foldmethod=marker
|
2014-11-04 14:58:42 -05:00
|
|
|
|
2016-06-02 18:57:15 -04:00
|
|
|
" Align the asterisks of c-style comments
|
2014-11-04 14:58:42 -05:00
|
|
|
set comments-=s1:/*,mb:*,ex:*/
|
|
|
|
set comments+=s:/*,mb:\ *,ex:\ */
|
|
|
|
set comments+=fb:*
|
|
|
|
|
2016-09-20 17:15:15 -04:00
|
|
|
" Highlight the focused line
|
|
|
|
set cursorline
|
|
|
|
|
2016-06-02 18:57:15 -04:00
|
|
|
"set background=dark
|
|
|
|
"let g:badwolf_darkgutter=1
|
2016-09-12 15:05:54 -04:00
|
|
|
colorscheme vorange
|
2014-11-04 14:58:42 -05:00
|
|
|
|
2016-07-18 18:00:17 -04:00
|
|
|
let g:airline_powerline_fonts = 1
|
2016-09-12 15:05:54 -04:00
|
|
|
"let g:airline#extensions#whitespace#mixed_indent_algo = 1
|
2016-07-21 13:58:56 -04:00
|
|
|
|
2016-06-02 18:57:15 -04:00
|
|
|
let g:ansible_attribute_highlight = "ab"
|