Migrate from pathogen to vim-plug
This commit is contained in:
parent
b769548d1e
commit
2a4716154a
84
vimrc
84
vimrc
@ -1,47 +1,51 @@
|
|||||||
"execute pathogen#infect()
|
" Initialize vim-plug <https://github.com/junegunn/vim-plug>
|
||||||
|
|
||||||
" Pathogen modules used:
|
call plug#begin()
|
||||||
" * git://github.com/tpope/vim-fugitive.git
|
" General usage plugins
|
||||||
" * git://github.com/tpope/vim-git.git
|
Plug 'tpope/vim-fugitive'
|
||||||
" * https://github.com/tpope/vim-sensible.git
|
Plug 'tpope/vim-git'
|
||||||
" * https://github.com/rust-lang/rust.vim.git
|
Plug 'tpope/vim-sensible'
|
||||||
" * https://github.com/pearofducks/ansible-vim.git
|
Plug 'rust-lang/rust.vim'
|
||||||
" * https://github.com/airblade/vim-gitgutter
|
Plug 'pearofducks/ansible-vim'
|
||||||
" * https://github.com/bling/vim-airline
|
Plug 'airblade/vim-gitgutter'
|
||||||
" * https://github.com/vim-airline/vim-airline-themes
|
Plug 'bling/vim-airline'
|
||||||
" * https://github.com/pangloss/vim-javascript
|
Plug 'vim-airline/vim-airline-themes'
|
||||||
" * https://github.com/tpope/vim-surround
|
Plug 'pangloss/vim-javascript'
|
||||||
" * https://github.com/scrooloose/syntastic
|
Plug 'tpope/vim-surround'
|
||||||
" * https://github.com/hashivim/vim-terraform.git
|
Plug 'scrooloose/syntastic'
|
||||||
" * https://github.com/tangledhelix/vim-kickstart.git
|
Plug 'hashivim/vim-terraform'
|
||||||
" * git@github.com:robbles/logstash.vim.git
|
Plug 'tangledhelix/vim-kickstart'
|
||||||
" * git@github.com:yorokobi/vim-splunk.git
|
Plug 'robbles/logstash.vim'
|
||||||
"
|
Plug 'yorokobi/vim-splunk'
|
||||||
" Pathogen colorschemes used: (vimcolors.com for more)
|
|
||||||
" * https://github.com/Marfisc/vorange.git
|
|
||||||
" * https://github.com/xero/blaquemagick.vim.git
|
|
||||||
" * https://github.com/jnurmine/Zenburn.git
|
|
||||||
" * https://github.com/sjl/badwolf.git
|
|
||||||
" * https://github.com/sheerun/vim-wombat-scheme.git
|
|
||||||
" * https://github.com/dsolstad/vim-wombat256i.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
|
|
||||||
" * https://github.com/ltlollo/diokai.git
|
|
||||||
|
|
||||||
syntax on
|
" Colorschemes
|
||||||
filetype plugin indent on
|
"Plug 'Marfisc/vorange'
|
||||||
|
Plug 'xero/blaquemagick.vim'
|
||||||
|
"Plug 'jnurmine/Zenburn'
|
||||||
|
"Plug 'sjl/badwolf'
|
||||||
|
"Plug 'sheerun/vim-wombat-scheme'
|
||||||
|
"Plug 'dsolstad/vim-wombat256i'
|
||||||
|
"Plug 'altercation/vim-colors-solarized'
|
||||||
|
"Plug 'YorickPeterse/happy_hacking.vim'
|
||||||
|
"Plug 'owickstrom/vim-colors-paramount'
|
||||||
|
"Plug 'pbrisbin/vim-colors-off'
|
||||||
|
"Plug 'kristijanhusak/vim-hybrid-material'
|
||||||
|
"Plug 'ltlollo/diokai'
|
||||||
|
call plug#end()
|
||||||
|
|
||||||
set softtabstop=2
|
set softtabstop=4
|
||||||
set shiftwidth=2
|
set shiftwidth=4
|
||||||
|
set tabstop=4
|
||||||
set number
|
set number
|
||||||
"set smartindent
|
"set smartindent
|
||||||
set expandtab
|
"set expandtab
|
||||||
set cindent
|
set cindent
|
||||||
set list
|
set list
|
||||||
set listchars=tab:▻\ ,trail:◈
|
set listchars=tab:»\ ,trail:·
|
||||||
|
"set listchars=tab:├\─,trail:▯
|
||||||
|
|
||||||
|
" Attempt to disable vim/mouse interactions
|
||||||
|
set mouse=
|
||||||
|
|
||||||
set foldmethod=marker
|
set foldmethod=marker
|
||||||
|
|
||||||
@ -55,14 +59,18 @@ set comments+=fb:*
|
|||||||
|
|
||||||
"set background=dark
|
"set background=dark
|
||||||
"let g:badwolf_darkgutter=1
|
"let g:badwolf_darkgutter=1
|
||||||
colorscheme happy_hacking
|
"colorscheme happy_hacking
|
||||||
|
colorscheme blaquemagick
|
||||||
|
|
||||||
let g:airline_powerline_fonts = 1
|
let g:airline_powerline_fonts = 1
|
||||||
"let g:airline#extensions#whitespace#mixed_indent_algo = 1
|
"let g:airline#extensions#whitespace#mixed_indent_algo = 1
|
||||||
|
|
||||||
let g:ansible_attribute_highlight = "ab"
|
let g:ansible_attribute_highlight = "ab"
|
||||||
|
|
||||||
|
let g:syntastic_check_on_open = 1
|
||||||
|
let g:syntastic_check_on_wq = 0
|
||||||
let g:syntastic_logstash_checkers = ['eslint']
|
let g:syntastic_logstash_checkers = ['eslint']
|
||||||
|
let g:syntastic_javascript_checkers = ['eslint']
|
||||||
|
|
||||||
if &diff
|
if &diff
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user