feat: added harpoon and oil

This commit is contained in:
s-prechtl 2024-03-06 00:05:08 +01:00
parent c98e3cf316
commit 2a7c1c70cd
4 changed files with 52 additions and 215 deletions

View file

@ -5,7 +5,6 @@ vim.g.maplocalleader = ' '
-- [[ Setting options ]]
-- See `:help vim.opt`
-- NOTE: You can change these options as you wish!
-- For more options, you can see `:help option-list`
vim.opt.number = true
@ -60,7 +59,6 @@ vim.opt.wrap = false
-- Set highlight on search, but clear on pressing <Esc> in normal mode
vim.opt.hlsearch = true
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
vim.keymap.set('n', '<leader>pv', vim.cmd.Ex)
-- Diagnostic keymaps
vim.keymap.set('n', '[d', vim.diagnostic.goto_prev, { desc = 'Go to previous [D]iagnostic message' })