diff options
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/nvrc/keymaps.fnl | 11 | ||||
-rw-r--r-- | fnl/nvrc/pack.fnl | 28 |
2 files changed, 13 insertions, 26 deletions
diff --git a/fnl/nvrc/keymaps.fnl b/fnl/nvrc/keymaps.fnl index 3b2814a..5af2d04 100644 --- a/fnl/nvrc/keymaps.fnl +++ b/fnl/nvrc/keymaps.fnl @@ -30,13 +30,4 @@ (map! [n] :t :<plug>Lightspeed_t) (map! [n] :T :<plug>Lightspeed_T) -(map! [n :silent] :<leader>ts ":TZMinimalist <cr>") -(map! [n :silent] :<leader>tf ":TZFocus <cr>") -(map! [n :silent] :<leader>ta ":TZAtaraxis <cr>") - -(map! [n :silent] :<leader>h ":lua require('harpoon.ui').nav_file(1) <cr>") -(map! [n :silent] :<leader>j ":lua require('harpoon.ui').nav_file(2) <cr>") -(map! [n :silent] :<leader>k ":lua require('harpoon.ui').nav_file(3) <cr>") -(map! [n :silent] :<leader>l ":lua require('harpoon.ui').nav_file(4) <cr>") -(map! [n :silent] "<leader>;" ":lua require('harpoon.ui').toggle_quick_menu() <cr>") -(map! [n :silent] "<leader>'" ":lua require('harpoon.mark').add_file() <cr>") +(map! [n :silent] :<leader>t ":TZAtaraxis <cr>") diff --git a/fnl/nvrc/pack.fnl b/fnl/nvrc/pack.fnl index bc13892..40d6203 100644 --- a/fnl/nvrc/pack.fnl +++ b/fnl/nvrc/pack.fnl @@ -6,30 +6,26 @@ (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! :nvim-treesitter/nvim-treesitter {:req :treesitter - :run ":TSUpdate" - :requires [(pack :p00f/nvim-ts-rainbow {:after :nvim-treesitter})]}) -(pack! :Pocco81/TrueZen.nvim {:cmd [:TZMinimalist :TZFocus :TZAtaraxis]}) -(pack! :stefandtw/quickfix-reflector.vim {:ft :qf :defer :quickfix-reflector.vim}) + :requires [(pack :p00f/nvim-ts-rainbow {:after :nvim-treesitter})]}) -(pack! :hrsh7th/nvim-cmp {:req :cmp :event :InsertCharPre}) -(pack! :luukvbaal/stabilize.nvim {:init :stabilize}) +(pack! :feline-nvim/feline.nvim {:req :feline}) +(pack! :Pocco81/TrueZen.nvim {:cmd :TZAtaraxis}) (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! :luukvbaal/stabilize.nvim {:init :stabilize}) (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}) +(pack! :gpanders/editorconfig.nvim {:event :BufRead}) +(pack! :lewis6991/spaceless.nvim {:init :spaceless :defer :spaceless.nvim}) +(pack! :stefandtw/quickfix-reflector.vim {:ft :qf}) + +(pack! :hrsh7th/nvim-cmp {:req :cmp :event :InsertCharPre}) +(pack! :numToStr/Comment.nvim {:module :Comment :init :Comment}) +(pack! :ibhagwan/fzf-lua {:req :fzf :cmd :FzfLua}) +(pack! :ggandor/lightspeed.nvim) (unpack!) |