6c9250d1da
commit7322bc0f73Author: anth64 <anth64@protonmail.com> Date: Tue Apr 15 22:21:09 2025 +0200 use lspconfig commit5577628a22Author: anth64 <anth64@protonmail.com> Date: Tue Apr 15 20:08:14 2025 +0200 reorderd lazy and config commit7f1a3b82daAuthor: anth64 <anth64@protonmail.com> Date: Tue Apr 15 19:29:43 2025 +0200 add colorschemes, default to moonfly commit466c8cf410Author: anth64 <anth64@protonmail.com> Date: Tue Apr 15 18:51:56 2025 +0200 make it work on windows as well commita9d9c2199dAuthor: anth64 <anth64@protonmail.com> Date: Fri Apr 11 07:26:54 2025 +0200 added jdtls and newline to end of files commit4db9e65e6fAuthor: anth64 <anth64@protonmail.com> Date: Thu Apr 10 22:33:16 2025 +0200 remove redundant remap of mapleader commitbb0ad9af1bAuthor: anth64 <anth64@protonmail.com> Date: Thu Apr 10 22:28:45 2025 +0200 readd telescope and harpoon commit1a56e26e6bAuthor: anth64 <anth64@protonmail.com> Date: Thu Apr 10 22:20:12 2025 +0200 redid mapping, set and util, also readded nvim-cmp and cmp-nvim-lsp commit690e575c03Author: anth64 <anth64@protonmail.com> Date: Wed Apr 9 23:23:51 2025 +0200 make sure that colorscheme is not touched commit0ab0b593f2Author: anth64 <anth64@protonmail.com> Date: Wed Apr 9 22:56:58 2025 +0200 add lazy.nvim and lualine plugin commita8dd286e39Author: anth64 <anth64@protonmail.com> Date: Wed Apr 9 07:59:00 2025 +0200 initial configuration
43 lines
1.1 KiB
Lua
43 lines
1.1 KiB
Lua
return {
|
|
{
|
|
"mbbill/undotree",
|
|
config = function()
|
|
vim.keymap.set("n", "<leader>u", vim.cmd.UndotreeToggle)
|
|
end,
|
|
},
|
|
{
|
|
"tpope/vim-fugitive",
|
|
config = function()
|
|
vim.keymap.set("n", "<leader>gs", vim.cmd.Git)
|
|
end,
|
|
},
|
|
{
|
|
"nvim-telescope/telescope.nvim",
|
|
dependencies = {"nvim-lua/plenary.nvim"},
|
|
config = function()
|
|
local builtin = require('telescope.builtin')
|
|
vim.keymap.set('n', '<leader>pf', builtin.find_files, {})
|
|
vim.keymap.set('n', '<C-p>', builtin.git_files, {})
|
|
vim.keymap.set('n', '<leader>ps', function()
|
|
builtin.grep_string({ search = vim.fn.input("Grep > ") });
|
|
end)
|
|
end,
|
|
},
|
|
{
|
|
"theprimeagen/harpoon",
|
|
config = function()
|
|
local mark = require("harpoon.mark")
|
|
local ui = require("harpoon.ui")
|
|
|
|
vim.keymap.set("n", "<leader>a", mark.add_file)
|
|
vim.keymap.set("n", "<C-e>", ui.toggle_quick_menu)
|
|
|
|
vim.keymap.set("n", "<C-h>", function() ui.nav_file(1) end)
|
|
vim.keymap.set("n", "<C-t>", function() ui.nav_file(2) end)
|
|
vim.keymap.set("n", "<C-n>", function() ui.nav_file(3) end)
|
|
vim.keymap.set("n", "<C-s>", function() ui.nav_file(4) end)
|
|
end
|
|
}
|
|
}
|
|
|