2022-10-27 18:59:28 -07:00
|
|
|
silent! call plug#begin()
|
2022-10-18 07:57:25 -07:00
|
|
|
Plug '~/.vim/plugged/typescript-vim'
|
|
|
|
Plug '~/.vim/plugged/vim-airline'
|
|
|
|
Plug '~/.vim/plugged/lightline.vim'
|
|
|
|
Plug '~/.vim/plugged/vim-javascript'
|
|
|
|
Plug '~/.vim/plugged/vim-jsx'
|
|
|
|
Plug '~/.vim/plugged/vim-markdown'
|
|
|
|
Plug '~/.vim/plugged/dockerfile.vim'
|
|
|
|
Plug '~/.vim/plugged/php.vim'
|
|
|
|
Plug '~/.vim/plugged/python-syntax'
|
|
|
|
Plug '~/.vim/plugged/nerdtree'
|
|
|
|
Plug '~/.vim/plugged/vim-five'
|
|
|
|
Plug '~/.vim/plugged/vim-prettier'
|
|
|
|
Plug '~/.vim/plugged/vim-sensible'
|
|
|
|
Plug '~/.vim/plugged/editorconfig-vim'
|
|
|
|
Plug '~/.vim/plugged/vimgutter'
|
|
|
|
Plug '~/.vim/plugged/vim-surround'
|
|
|
|
Plug '~/.vim/plugged/vim-carbon-now-sh'
|
|
|
|
Plug '~/.vim/plugged/vim-multiple-cursors'
|
|
|
|
Plug '~/.vim/plugged/ale'
|
|
|
|
Plug '~/.vim/plugged/fzf'
|
|
|
|
Plug '~/.vim/plugged/fzf.vim'
|
2022-10-27 19:06:03 -07:00
|
|
|
if executable('node')
|
|
|
|
Plug '~/.vim/plugged/coc.nvim'
|
|
|
|
endif
|
2022-10-18 07:57:25 -07:00
|
|
|
Plug '~/.vim/plugged/syntastic'
|
|
|
|
Plug '~/.vim/plugged/vim-devicons'
|
|
|
|
Plug '~/.vim/plugged/zoxide.vim'
|
|
|
|
Plug '~/.vim/plugged/vim-go'
|
|
|
|
Plug '~/.vim/plugged/ansible-vim', {'do': './UltiSnips/generate.sh'}
|
2022-10-25 03:01:34 -07:00
|
|
|
call plug#end()
|
2022-09-02 22:32:06 -07:00
|
|
|
|
|
|
|
syntax enable
|
|
|
|
set background=dark
|
2022-10-18 07:57:25 -07:00
|
|
|
colorscheme betelgeuse
|
2022-10-27 18:55:03 -07:00
|
|
|
" set g:lightline = { 'colorscheme': 'ThemerVimLightline' }
|
2022-09-02 22:32:06 -07:00
|
|
|
|
|
|
|
" Settings for plugin https://github.com/neoclide/coc.nvim.git
|
|
|
|
autocmd FileType json syntax match Comment +\/\/.\+$+
|
|
|
|
|
|
|
|
" Settings for plugin https://github.com/vim-syntastic/syntastic.git
|
|
|
|
set statusline+=%#warningmsg#
|
|
|
|
set statusline+=%{SyntasticStatuslineFlag()}
|
|
|
|
set statusline+=%*
|
|
|
|
let g:syntastic_always_populate_loc_list = 1
|
|
|
|
let g:syntastic_auto_loc_list = 1
|
|
|
|
let g:syntastic_check_on_open = 1
|
|
|
|
let g:syntastic_check_on_wq = 0
|
|
|
|
|
|
|
|
" Settings for plugin https://github.com/ryanoasis/vim-devicons.git
|
|
|
|
set encoding=UTF-8
|
Update dotfiles/.local/share/chezmoi/.chezmoiexternal.toml, dotfiles/.local/share/chezmoi/.chezmoi.toml.tmpl, dotfiles/.local/share/chezmoi/dot_ssh/authorized_keys.tmpl, dotfiles/.local/share/chezmoi/.chezmoiignore, dotfiles/.config/chezmoi/chezmoi.toml, dotfiles/.local/share/chezmoi/dot_gitconfig.tmpl, dotfiles/.local/share/chezmoi/dot_bashrc.tmpl, dotfiles/.local/share/chezmoi/dot_profile.tmpl, dotfiles/.profile, dotfiles/.local/share/chezmoi/.chezmoitemplates/profile.sh, dotfiles/.vimrc, dotfiles/.local/share/chezmoi/.chezmoitemplates/chassis-info, dotfiles/.local/share/chezmoi/.chezmoitemplates/cpu-info, dotfiles/.local/share/chezmoi/run_once_before_install-software.sh.tmpl, dotfiles/.local/share/chezmoi/.chezmoidata.yaml
Deleted dotfiles/.config/chezmoi/chezmoi.yaml
2022-11-21 17:06:51 -08:00
|
|
|
|
|
|
|
" Automatically apply with Chezmoi anytime a source file is modified
|
|
|
|
autocmd BufWritePost ~/.local/share/chezmoi/* ! chezmoi apply --source-path "%"
|