diff options
author | sefidel <contact@sefidel.net> | 2022-02-25 23:52:02 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-02-25 23:52:02 +0900 |
commit | a6cd962252e93d780f95f1bb0667d5a478bfda61 (patch) | |
tree | 1fd70d3e7af47d0c93f6fc065c3aea5f992c3db8 /fnl/nvrc | |
parent | b766ac9cbbf7080f545e8bd1e7201491e515d7ed (diff) | |
download | nvimrc-a6cd962252e93d780f95f1bb0667d5a478bfda61.tar.gz nvimrc-a6cd962252e93d780f95f1bb0667d5a478bfda61.zip |
feat(pack): make use of packer dependencies
Diffstat (limited to 'fnl/nvrc')
-rw-r--r-- | fnl/nvrc/pack.fnl | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/fnl/nvrc/pack.fnl b/fnl/nvrc/pack.fnl index f651397..074fe80 100644 --- a/fnl/nvrc/pack.fnl +++ b/fnl/nvrc/pack.fnl @@ -1,4 +1,4 @@ -(import-macros {: pack! : unpack!} :nvrc.macro.pack) +(import-macros {: pack : pack! : unpack!} :nvrc.macro.pack) (pack! :wbthomason/packer.nvim) (pack! :rktjmp/hotpot.nvim) @@ -10,21 +10,18 @@ (pack! :feline-nvim/feline.nvim {:req :feline}) (pack! :lukas-reineke/indent-blankline.nvim {:req :blankline}) (pack! :NvChad/nvim-colorizer.lua {:init :colorizer :cmd :ColorizerToggle}) -(pack! :nvim-treesitter/nvim-treesitter {:req :treesitter :run ":TSUpdate"}) -(pack! :p00f/nvim-ts-rainbow) -(pack! :nvim-treesitter/nvim-treesitter-refactor) -(pack! :nvim-treesitter/nvim-treesitter-textobjects) -(pack! :JoosepAlviste/nvim-ts-context-commentstring) +(pack! :nvim-treesitter/nvim-treesitter {:req :treesitter + :run ":TSUpdate" + :requires [(pack :p00f/nvim-ts-rainbow {:after :nvim-treesitter :commit :2da916a}) + (pack :nvim-treesitter/nvim-treesitter-refactor {:after :nvim-treesitter}) + (pack :nvim-treesitter/nvim-treesitter-textobjects {:after :nvim-treesitter}) + (pack :JoosepAlviste/nvim-ts-context-commentstring {:after :nvim-treesitter})]}) (pack! :lewis6991/gitsigns.nvim {:req :gitsigns}) (pack! :sindrets/diffview.nvim {:req :diffview :cmd [:DiffviewOpen :DiffviewFileHistory] :module_pattern [:diffview :diffview.*]}) (pack! :Pocco81/TrueZen.nvim {:cmd [:TZMinimalist :TZFocus :TZAtaraxis]}) (pack! :stefandtw/quickfix-reflector.vim {:ft :qf}) -(pack! :neovim/nvim-lspconfig {:req :lspconfig}) -(pack! :ray-x/lsp_signature.nvim {:req :lsp_signature}) -(pack! :hrsh7th/nvim-cmp {:req :cmp :event :InsertEnter}) -(pack! :hrsh7th/cmp-nvim-lsp {:after :nvim-cmp}) - +(pack! :hrsh7th/nvim-cmp {:req :cmp :event :InsertCharPre}) (pack! :luukvbaal/stabilize.nvim {:init :stabilize}) (pack! :antoinemadec/FixCursorHold.nvim) (pack! :numToStr/Comment.nvim {:module :Comment :init :Comment}) @@ -39,6 +36,10 @@ (pack! :ThePrimeagen/harpoon {:req :harpoon}) (pack! :gpanders/editorconfig.nvim) +(pack! :neovim/nvim-lspconfig {:req :lspconfig + :requires [(pack :hrsh7th/cmp-nvim-lsp {:after :nvim-cmp}) + (pack :ray-x/lsp_signature.nvim {:req :lsp_signature :after :nvim-lspconfig})]}) + (pack! :simrat39/rust-tools.nvim {:init :rust-tools :ft :rust}) (pack! :eraserhd/parinfer-rust {:ft [:fennel :clojure :query :lisp] :run "cargo build --release"}) |