diff options
author | HampusM <hampus@hampusmat.com> | 2022-09-18 11:39:25 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-09-18 11:39:25 +0200 |
commit | 3c238894c5b6f15c5f27cea8bd3785eb0f1ebf0f (patch) | |
tree | 68292df2b0cd698484d26057a4faf914e9ea6300 /lua/plugins.lua | |
parent | d8fa264ac732286dcf9234bc40e60eeb7e230ca7 (diff) |
add config
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua new file mode 100644 index 0000000..4e43e14 --- /dev/null +++ b/lua/plugins.lua @@ -0,0 +1,37 @@ +return require("packer").startup(function(use) + use "wbthomason/packer.nvim" + + use "tpope/vim-fugitive" + + -- NERDtree + use "preservim/nerdtree" + use "ryanoasis/vim-devicons" + use "tiagofumo/vim-nerdtree-syntax-highlight" + + -- Style + use "https://git.hampusmat.com/ayu-vim" + use {"RRethy/vim-hexokinase", run = "make hexokinase"} + use "vim-airline/vim-airline" + use "lukas-reineke/indent-blankline.nvim" + + -- Coc + -- use {"neoclide/coc.nvim", branch = "release"} + use "https://github.com/HampusMat/coc.nvim" + + -- Navigation + use "christoomey/vim-tmux-navigator" + + -- Fzf + use "junegunn/fzf" + use "junegunn/fzf.vim" + + -- Formatting + use "rhysd/vim-clang-format" + + -- Markdown + use "preservim/vim-markdown" + use {"iamcco/markdown-preview.nvim", run = "cd app && yarn install"} + + -- Formatting + use "alx741/vim-rustfmt" +end) |