this might actually work on windows
parent
2249ffab4b
commit
5beccc1d4b
@ -1,34 +1,22 @@
|
|||||||
set nocompatible
|
set nocompatible
|
||||||
|
|
||||||
filetype off
|
map <F12> :source $MYVIMRC<CR>
|
||||||
|
|
||||||
|
" Plugins -------------------------------------------------------------------{{{
|
||||||
|
" set the runtime path to include Vundle and initialize
|
||||||
if has('win32')
|
if has('win32')
|
||||||
set rtp+=~/AppData/Local/nvim/bundle/Vundle.vim
|
set rtp+=~/AppData/Local/nvim/bundle/Vundle.vim
|
||||||
else
|
else
|
||||||
" set the runtime path to include Vundle and initialize
|
|
||||||
set rtp+=~/.vim/bundle/Vundle.vim
|
set rtp+=~/.vim/bundle/Vundle.vim
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
filetype off
|
||||||
call vundle#begin()
|
call vundle#begin()
|
||||||
" let Vundle manage Vundle, required
|
|
||||||
Plugin 'VundleVim/Vundle.vim'
|
Plugin 'VundleVim/Vundle.vim'
|
||||||
Plugin 'tpope/vim-fugitive' " integration with the git cli
|
Plugin 'nanotech/jellybeans.vim'
|
||||||
Plugin 'tpope/vim-surround' " edits surrounding quotes and parens and the like
|
|
||||||
Plugin 'mhinz/vim-signify'
|
|
||||||
Plugin 'fatih/vim-go' " all-in-one Go tools
|
|
||||||
Plugin 'fatih/vim-hclfmt' " nicely formats hcl files
|
|
||||||
Plugin 'nanotech/jellybeans.vim' " the best colorscheme
|
|
||||||
Plugin 'ervandew/supertab' " makes tab better apparently
|
|
||||||
Plugin 'scrooloose/nerdcommenter' " no idea if I'm even using this
|
|
||||||
Plugin 'scrooloose/nerdtree' " better file navigation
|
|
||||||
Plugin 'Align' " aligns things on demand
|
|
||||||
Plugin 'itchyny/lightline.vim' " fancy status line
|
Plugin 'itchyny/lightline.vim' " fancy status line
|
||||||
Plugin 'hashivim/vim-terraform' " hclfmt but for terraform
|
|
||||||
Plugin 'Glench/Vim-Jinja2-Syntax' " jinja2 syntax stuff
|
|
||||||
Plugin 'rust-lang/rust.vim' " bare minimum rust syntax stuff
|
|
||||||
call vundle#end()
|
call vundle#end()
|
||||||
|
|
||||||
set runtimepath^=~/.vim runtimepath+=~/.vim/after
|
" enable the filetype plugin
|
||||||
let &packpath = &runtimepath
|
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
source ~/.vimrc
|
" ---------------------------------------------------------------------------}}}
|
||||||
|
Loading…
Reference in New Issue