Remove telekasten, add markview.

This commit is contained in:
Dan Chadwick
2024-12-13 19:41:07 -05:00
parent f5eaec8a5d
commit d7645de63d
5 changed files with 28 additions and 37 deletions

View File

@@ -27,7 +27,7 @@ return {
}):find()
end
vim.keymap.set("n", "<C-h>", function() toggle_telescope(harpoon:list()) end, { desc = "Open harpoon window" })
vim.keymap.set("n", "<leader>a", function() harpoon:list():append() end)
vim.keymap.set("n", "<leader>a", function() harpoon:list():add() end)
vim.keymap.set("n", "<leader>c", function() harpoon:list():clear() end)
vim.keymap.set("n", "<leader>r", function() harpoon:list():remove() end)
-- vim.keymap.set("n", "<C-h>", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end)

12
lua/plugins/markview.lua Normal file
View File

@@ -0,0 +1,12 @@
return {
"OXY2DEV/markview.nvim",
config = function()
require('markview').setup({
lazy = false,
})
end,
dependencies = {
"nvim-treesitter/nvim-treesitter",
"nvim-tree/nvim-web-devicons"
}
}

View File

@@ -1,9 +0,0 @@
return {
'renerocksai/telekasten.nvim',
dependencies = {'nvim-telescope/telescope.nvim'},
config = function()
require('telekasten').setup({
home = vim.fn.expand("~/Personal/Notes/Notebook"), -- Put the name of your notes directory here
})
end
}