sundry/vimrc

65 lines
1.8 KiB
VimL
Raw Normal View History

"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
" * https://github.com/vim-airline/vim-airline-themes
2016-07-18 18:00:17 -04:00
" * https://github.com/pangloss/vim-javascript
" * 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-09-12 15:05:54 -04:00
" Pathogen colorschemes used: (vimcolors.com for more)
" * https://github.com/Marfisc/vorange.git
" * 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
2017-02-27 19:15:28 -05:00
" * https://github.com/ltlollo/diokai.git
syntax on
filetype plugin indent on
set softtabstop=2
set shiftwidth=2
set number
"set smartindent
set expandtab
set cindent
set list
set listchars=tab:▻\ ,trail:◈
set foldmethod=marker
" Align the asterisks of c-style comments
set comments-=s1:/*,mb:*,ex:*/
set comments+=s:/*,mb:\ *,ex:\ */
set comments+=fb:*
" Highlight the focused line
set cursorline
"set background=dark
"let g:badwolf_darkgutter=1
colorscheme happy_hacking
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
let g:ansible_attribute_highlight = "ab"
2017-02-23 00:00:04 -05:00
if &diff
else
silent sba
endif