Compare commits

...

3 Commits
mason ... main

Author SHA1 Message Date
c20960ebaa Change C-; mapping to M-; so that it works inside tmux 2024-03-20 21:35:37 -06:00
96c6bf4621 Add glslls lsp 2024-02-17 12:46:54 -07:00
f6ca6ee8d2 Add clangd lsp 2024-02-07 21:10:12 -07:00
2 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,7 @@ local mark = require("harpoon.mark")
local ui = require("harpoon.ui")
vim.keymap.set("n", "<leader>a", mark.add_file);
vim.keymap.set("n", "<C-;>", ui.toggle_quick_menu)
vim.keymap.set("n", "<M-;>", ui.toggle_quick_menu)
vim.keymap.set("n", "<C-h>", function() ui.nav_file(1) end);
vim.keymap.set("n", "<C-j>", function() ui.nav_file(2) end);

View File

@ -8,6 +8,8 @@ local lsp_servers = {
'gopls',
'pylsp',
'templ',
'clangd',
'glslls',
'ansiblels',
'rust_analyzer',
}