Update dotfiles/.local/share/chezmoi/private_dot_config/Brewfile.tmpl, dotfiles/.local/share/chezmoi/private_dot_config/fd/ignore, dotfiles/.local/share/chezmoi/private_dot_config/git/ignore, dotfiles/.local/share/chezmoi/private_dot_config/git/config.tmpl, dotfiles/.local/share/chezmoi/private_dot_config/k9s/plugin.yml, dotfiles/.local/share/chezmoi/private_dot_config/shell/aliases, dotfiles/.local/share/chezmoi/private_dot_config/shell/functions, dotfiles/.local/share/chezmoi/private_dot_config/shell/exports.sh, dotfiles/.local/share/chezmoi/private_dot_config/asdf/default-npm-packages, dotfiles/.profile, dotfiles/.local/share/chezmoi/private_dot_config/shell/motd, dotfiles/.bash_profile, dotfiles/.bashrc, dotfiles/.zshrc, dotfiles/.local/share/chezmoi/private_dot_config/ripgrep/config, dotfiles/.local/share/chezmoi/private_dot_config/readline/inputrc, dotfiles/.local/share/chezmoi/private_dot_config/pg/.gitkeep, dotfiles/.local/share/chezmoi/private_dot_config/putty/.gitkeep, dotfiles/.npmrc, dotfiles/.local/share/chezmoi/private_dot_config/npm/npmrc.tmpl, dotfiles/.local/share/chezmoi/dot_local/state/bash/.gitkeep, dotfiles/.local/share/chezmoi/dot_vim/vimrc, dotfiles/.local/share/chezmoi/dot_profile.tmpl
2022-11-21 20:00:41 -08:00
|
|
|
silent! call plug#begin()
|
|
|
|
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'
|
|
|
|
if executable('node')
|
|
|
|
Plug '~/.vim/plugged/coc.nvim'
|
|
|
|
endif
|
|
|
|
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'}
|
|
|
|
call plug#end()
|
|
|
|
|
|
|
|
syntax enable
|
|
|
|
set background=dark
|
2022-11-22 09:33:42 -08:00
|
|
|
colorscheme Betelgeuse
|
|
|
|
" set g:lightline = { 'colorscheme': 'Betelgeuse' }
|
Update dotfiles/.local/share/chezmoi/private_dot_config/Brewfile.tmpl, dotfiles/.local/share/chezmoi/private_dot_config/fd/ignore, dotfiles/.local/share/chezmoi/private_dot_config/git/ignore, dotfiles/.local/share/chezmoi/private_dot_config/git/config.tmpl, dotfiles/.local/share/chezmoi/private_dot_config/k9s/plugin.yml, dotfiles/.local/share/chezmoi/private_dot_config/shell/aliases, dotfiles/.local/share/chezmoi/private_dot_config/shell/functions, dotfiles/.local/share/chezmoi/private_dot_config/shell/exports.sh, dotfiles/.local/share/chezmoi/private_dot_config/asdf/default-npm-packages, dotfiles/.profile, dotfiles/.local/share/chezmoi/private_dot_config/shell/motd, dotfiles/.bash_profile, dotfiles/.bashrc, dotfiles/.zshrc, dotfiles/.local/share/chezmoi/private_dot_config/ripgrep/config, dotfiles/.local/share/chezmoi/private_dot_config/readline/inputrc, dotfiles/.local/share/chezmoi/private_dot_config/pg/.gitkeep, dotfiles/.local/share/chezmoi/private_dot_config/putty/.gitkeep, dotfiles/.npmrc, dotfiles/.local/share/chezmoi/private_dot_config/npm/npmrc.tmpl, dotfiles/.local/share/chezmoi/dot_local/state/bash/.gitkeep, dotfiles/.local/share/chezmoi/dot_vim/vimrc, dotfiles/.local/share/chezmoi/dot_profile.tmpl
2022-11-21 20:00:41 -08: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
|
|
|
|
|
|
|
|
" Automatically apply with Chezmoi anytime a source file is modified
|
|
|
|
autocmd BufWritePost ~/.local/share/chezmoi/* ! chezmoi apply --source-path "%"
|