diff options
author | Matthew Lemon <y@yulqen.org> | 2024-12-07 19:03:15 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-12-07 19:03:15 +0000 |
commit | f87cfb441360ae1ec59b9af39ee53387d1750725 (patch) | |
tree | 18eb6710c22cabb9c7da8da734e4db148eb3ac9e | |
parent | b0599fea59f8ab21365cd92b08aeb2cf0d141ad2 (diff) |
Adds back plug
-rw-r--r-- | vim/min-vim | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/vim/min-vim b/vim/min-vim index f9468f6..8fd1d67 100644 --- a/vim/min-vim +++ b/vim/min-vim @@ -6,6 +6,7 @@ filetype plugin indent on let maplocalleader = "\\" let mapleader = "," +syntax on set autoread set foldmethod=manual set autowrite @@ -61,6 +62,16 @@ nnoremap <leader>ev <C-w>s<C-w>j<C-w>L:e $HOME/.vim/vimrc<cr> command! W w +call plug#begin() +Plug 'tpope/vim-commentary' +Plug 'SirVer/UltiSnips' +Plug 'preservim/vim-markdown' +Plug 'honza/vim-snippets' +Plug 'mhinz/vim-signify' +Plug 'vim-test/vim-test' +Plug 'dense-analysis/ale' +call plug#end() + augroup textfiles autocmd! @@ -68,5 +79,4 @@ augroup textfiles augroup end set background=dark -colorscheme koehler -syntax on +colorscheme industry |