about summary refs log tree commit diff
path: root/fnl/nvrc/pack.fnl
blob: e33c6c81f9b1e77a33f1b108a3f585b5214ad96d (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
36
37
38
39
(import-macros {: pack : pack! : unpack!} :nvrc.macro.pack)

(pack! :wbthomason/packer.nvim)
(pack! :rktjmp/hotpot.nvim)
(pack! :lewis6991/impatient.nvim)
(pack! :nvim-lua/plenary.nvim {:module :plenary})

(pack! :nanotech/jellybeans.vim {:config "require('nvrc.colors').apply('jellybeans')"})
(pack! :feline-nvim/feline.nvim {:req :feline})
(pack! :lukas-reineke/indent-blankline.nvim {:req :blankline :defer :indent-blankline.nvim})
(pack! :NvChad/nvim-colorizer.lua {:init :colorizer :cmd :ColorizerToggle})
(pack! :nvim-treesitter/nvim-treesitter {:req :treesitter
                                          :run ":TSUpdate"
                                          :requires [(pack :p00f/nvim-ts-rainbow {:after :nvim-treesitter})
                                                     (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! :Pocco81/TrueZen.nvim {:cmd [:TZMinimalist :TZFocus :TZAtaraxis]})
(pack! :stefandtw/quickfix-reflector.vim {:ft :qf :defer :quickfix-reflector.vim})

(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})
(pack! :lewis6991/spaceless.nvim {:init :spaceless :defer :spaceless.nvim})
(pack! :ggandor/lightspeed.nvim)
(pack! :nacro90/numb.nvim {:init :numb})
(pack! :ibhagwan/fzf-lua {:req :fzf :module :fzf-lua :cmd :FzfLua})
(pack! :ThePrimeagen/harpoon {:req :harpoon :defer :harpoon})
(pack! :gpanders/editorconfig.nvim {:event :BufRead})

(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 :ray-x/lsp_signature.nvim {:req :lsp_signature :after :nvim-lspconfig})]})

(pack! :simrat39/rust-tools.nvim {:init :rust-tools :ft :rust})

(unpack!)