installed harpoon + refactor changes

This commit is contained in:
Ishaan Karvir 2024-01-23 01:13:31 -08:00
parent 5078bd548f
commit 623fec03f6
5 changed files with 46 additions and 11 deletions

View file

@ -73,6 +73,8 @@ require('lazy').setup({
'tpope/vim-fugitive',
'tpope/vim-rhubarb',
'ThePrimeagen/vim-be-good',
-- Detect tabstop and shiftwidth automatically
'tpope/vim-sleuth',
@ -213,7 +215,6 @@ require('lazy').setup({
-- NOTE: Next Step on Your Neovim Journey: Add/Configure additional "plugins" for kickstart
-- These are some example plugins that I've included in the kickstart repository.
-- Uncomment any of the lines below to enable them.
require 'kickstart.plugins.autoformat',
{ import = 'custom.plugins' },
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
@ -275,7 +276,7 @@ vim.keymap.set({ 'n', 'v' }, '<Space>', '<Nop>', { silent = true })
vim.keymap.set('n', 'k', "v:count == 0 ? 'gk' : 'k'", { expr = true, silent = true })
vim.keymap.set('n', 'j', "v:count == 0 ? 'gj' : 'j'", { expr = true, silent = true })
vim.keymap.set('n', '<C-b>', '<Cmd>Neotree<CR>', { desc = 'Toggle NeoTree' })
vim.keymap.set('n', '<C-b>', '<Cmd>Neotree toggle<CR>', { desc = 'Toggle NeoTree' })
vim.keymap.set('n', 'F', '<Cmd>Neotree filesystem reveal left<CR>', { desc = 'Show file in tree' })
-- [[ Highlight on yank ]]