about summary refs log tree commit diff
path: root/fnl/nvrc/pack.fnl
blob: 26c2b672f8af9ed278206fc8d5a6105e75ee6422 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
(import-macros {: pack : pack! : unpack!} :nvrc.macro.pack)

(pack! :wbthomason/packer.nvim)
; TODO: https://github.com/rktjmp/hotpot.nvim/pull/51
(pack! :rktjmp/hotpot.nvim {:branch :picante})

(pack! :boppyt/softjelly.vim {:config "require('nvrc.colors').apply('softjelly')"})
(pack! :nvim-treesitter/nvim-treesitter {:req :treesitter
                                         :requires [(pack :nvim-treesitter/nvim-treesitter-refactor {:after :nvim-treesitter})
                                                    (pack :nvim-treesitter/nvim-treesitter-textobjects {:after :nvim-treesitter})]})

(pack! :antoinemadec/FixCursorHold.nvim)
(pack! :luukvbaal/stabilize.nvim {:init :stabilize})
(pack! :justinmk/vim-dirvish)

(pack! :neovim/nvim-lspconfig {:req :lspconfig
                               :requires [(pack :hrsh7th/cmp-nvim-lsp {:after :nvim-cmp})
                                          (pack :j-hui/fidget.nvim {:req :fidget :after :nvim-lspconfig})
                                          (pack :hrsh7th/cmp-nvim-lsp-signature-help {:after :cmp-nvim-lsp})]})
(pack! :simrat39/rust-tools.nvim {:init :rust-tools :ft :rust :requires [(pack :nvim-lua/plenary.nvim)]})
(pack! :p00f/clangd_extensions.nvim {:req :clangd :ft [:c :cpp :objc :objcpp] :module :clangd_extensions})
(pack! :gpanders/editorconfig.nvim)
(pack! :stefandtw/quickfix-reflector.vim {:ft :qf})
(pack! :tpope/vim-fugitive)
(pack! :tpope/vim-eunuch)
(pack! :tpope/vim-sleuth)

(pack! :hrsh7th/nvim-cmp {:req :cmp :event :InsertEnter
                          :requires [(pack :L3MON4D3/LuaSnip {:module :luasnip})
                                     (pack :lukas-reineke/cmp-under-comparator {:module :cmp-under-comparator})]})
(pack! :numToStr/Comment.nvim {:module :Comment :init :Comment})
(pack! :ibhagwan/fzf-lua {:req :fzf :module :fzf-lua})
(pack! :ggandor/lightspeed.nvim)

(unpack!)