diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-02-25 15:17:37 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-02-25 15:26:09 +0100 |
| commit | d59a26f882017a62b4119a7649ca3d4b43f65725 (patch) | |
| tree | 3ec808804ef398651a9bcc9a021f16c5d30b7b88 /config/vim/pluggins.vim | |
| parent | bb72eb10b6c7148ad3107c50a4232dea080d1468 (diff) | |
| download | dotfiles-d59a26f882017a62b4119a7649ca3d4b43f65725.tar.gz dotfiles-d59a26f882017a62b4119a7649ca3d4b43f65725.tar.bz2 dotfiles-d59a26f882017a62b4119a7649ca3d4b43f65725.zip | |
Added vint and flake8 to lint vim and qutebrowser conf, Added shellcheck to zsh files, Fixing all linting errors
Diffstat (limited to 'config/vim/pluggins.vim')
| -rw-r--r-- | config/vim/pluggins.vim | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/config/vim/pluggins.vim b/config/vim/pluggins.vim index 7091c5f..b7436f2 100644 --- a/config/vim/pluggins.vim +++ b/config/vim/pluggins.vim @@ -2,12 +2,12 @@ " vim pluggins " """""""""""""""" -call plug#begin("$XDG_DATA_HOME/vim/plugged") +call plug#begin($XDG_DATA_HOME . '/vim/plugged') Plug 'ctrlpvim/ctrlp.vim' " Ctrl-P similar to vsc Plug 'tpope/vim-eunuch' " basic unix command in vim Plug 'tomtom/tcomment_vim' " mininal commenter Plug 'itchyny/lightline.vim' " minimal status bar - Plug 'HappyTramp/vim-syntax-extra' " syntax highlight of C operators + Plug 'cacharle/vim-syntax-extra' " syntax highlight of C operators Plug 'romainl/vim-cool' " disable highlight after search Plug 'tpope/vim-fugitive' " git wrapper Plug 'junegunn/vim-easy-align' " align @@ -18,7 +18,6 @@ call plug#begin("$XDG_DATA_HOME/vim/plugged") " Plug 'mhinz/vim-rfc' " RFC download/syntax/tags Plug 'skammer/vim-css-color' - " markdown preview in browser " Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }, 'for': ['markdown', 'vim-plug']} @@ -29,7 +28,7 @@ call plug#begin("$XDG_DATA_HOME/vim/plugged") Plug 'nikvdp/ejs-syntax' " ejs " s19 at home - Plug 'HappyTramp/vim-42header' " 42 header + Plug 'cacharle/vim-42header' " 42 header " themes " Plug 'joshdick/onedark.vim' " onedark |
