diff options
author | sefidel <contact@sefidel.net> | 2022-02-10 00:24:03 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-02-10 00:24:03 +0900 |
commit | 72d448e384249103748ee83b587c45924e4bc44d (patch) | |
tree | 2aa05a6aaf8c7aa37a8c278fd2fede6e62ff2218 /fnl/nvrc/pack.fnl | |
download | nvimrc-72d448e384249103748ee83b587c45924e4bc44d.tar.gz nvimrc-72d448e384249103748ee83b587c45924e4bc44d.zip |
Initial commit
Diffstat (limited to 'fnl/nvrc/pack.fnl')
-rw-r--r-- | fnl/nvrc/pack.fnl | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/fnl/nvrc/pack.fnl b/fnl/nvrc/pack.fnl new file mode 100644 index 0000000..a1c611a --- /dev/null +++ b/fnl/nvrc/pack.fnl @@ -0,0 +1,34 @@ +(import-macros {: 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 {:event :VimEnter :config "require('nvrc.colors').apply()"}) +(pack! :feline-nvim/feline.nvim {:req :feline :after :jellybeans.vim}) +(pack! :lukas-reineke/indent-blankline.nvim {:event :BufRead :req :blankline}) +(pack! :NvChad/nvim-colorizer.lua {:event :BufRead}) +(pack! :nvim-treesitter/nvim-treesitter {:req :treesitter :defer :nvim-treesitter :run ":TSUpdate"}) +(pack! :lewis6991/gitsigns.nvim {:req :gitsigns :defer :gitsigns.nvim}) +(pack! :Pocco81/TrueZen.nvim {:cmd [:TZMinimalist :TZFocus :TZAtaraxis]}) +(pack! :stefandtw/quickfix-reflector.vim {:ft :qf}) + +(pack! :neovim/nvim-lspconfig {:req :lspconfig :module :lspconfig :setup (fn [] + ((. (require :nvrc.utils) :defer_unpack) :nvim-lspconfig 100) + (vim.defer_fn #(vim.cmd "if &ft == 'packer' | echo '' | else | silent! e %") 150))}) +(pack! :ray-x/lsp_signature.nvim {:req :lsp_signature :after :nvim-lspconfig}) +(pack! :hrsh7th/nvim-cmp {:req :cmp :event :InsertEnter}) +(pack! :hrsh7th/cmp-nvim-lsp {:after :nvim-cmp}) + +(pack! :luukvbaal/stabilize.nvim {:after :jellybeans.vim :init :stabilize}) +(pack! :numToStr/Comment.nvim {:module :Comment :init :Comment}) +; TODO: https://github.com/kyazdani42/nvim-tree.lua/issues/951 +(pack! :kyazdani42/nvim-tree.lua {:req :nvimtree :cmd [:NvimTreeToggle :NvimTreeFocus] :commit "d8bf1ad"}) +(pack! :ggandor/lightspeed.nvim {:keys [:s :S :x :X :f :F]}) +(pack! :nvim-telescope/telescope.nvim {:req :telescope :module :telescope :cmd :Telescope}) +(pack! :boppyt/nvrc-extra) + +(pack! :bakpakin/fennel.vim {:ft :fennel}) + +(unpack!) |