Compare commits
2 commits
70a587dd40
...
d433c09dd1
Author | SHA1 | Date | |
---|---|---|---|
d433c09dd1 | |||
faee1ff72c |
2 changed files with 19 additions and 0 deletions
|
@ -1,2 +1,9 @@
|
||||||
# dotfiles
|
# dotfiles
|
||||||
|
|
||||||
|
## Vim
|
||||||
|
|
||||||
|
```bash
|
||||||
|
ln -sv ${PWD}/vimrc ~/.vimrc
|
||||||
|
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
||||||
|
```
|
||||||
|
|
||||||
|
|
12
vimrc
12
vimrc
|
@ -17,6 +17,14 @@ Plugin 'tpope/vim-fugitive'
|
||||||
Plugin 'vim-airline/vim-airline'
|
Plugin 'vim-airline/vim-airline'
|
||||||
Plugin 'vim-airline/vim-airline-themes'
|
Plugin 'vim-airline/vim-airline-themes'
|
||||||
Plugin 'airblade/vim-gitgutter'
|
Plugin 'airblade/vim-gitgutter'
|
||||||
|
Plugin 'kien/ctrlp.vim'
|
||||||
|
Plugin 'tpope/vim-surround'
|
||||||
|
Plugin 'scrooloose/nerdcommenter'
|
||||||
|
Plugin 'junegunn/fzf'
|
||||||
|
Plugin 'scrooloose/syntastic'
|
||||||
|
Plugin 'hashivim/vim-terraform'
|
||||||
|
Plugin 'valloric/youcompleteme'
|
||||||
|
|
||||||
" plugin from http://vim-scripts.org/vim/scripts.html
|
" plugin from http://vim-scripts.org/vim/scripts.html
|
||||||
" Plugin 'L9'
|
" Plugin 'L9'
|
||||||
" Git plugin not hosted on GitHub
|
" Git plugin not hosted on GitHub
|
||||||
|
@ -45,3 +53,7 @@ filetype plugin indent on " required
|
||||||
" see :h vundle for more details or wiki for FAQ
|
" see :h vundle for more details or wiki for FAQ
|
||||||
" Put your non-Plugin stuff after this line
|
" Put your non-Plugin stuff after this line
|
||||||
let g:airline_theme='molokai'
|
let g:airline_theme='molokai'
|
||||||
|
|
||||||
|
" vim-terraform
|
||||||
|
let g:terraform_align=1
|
||||||
|
let g:terraform_fmt_on_save=1
|
||||||
|
|
Loading…
Add table
Reference in a new issue