diff --git a/lua/config/keybindings.lua b/lua/config/keybindings.lua index 69cf573..fffaa86 100644 --- a/lua/config/keybindings.lua +++ b/lua/config/keybindings.lua @@ -5,8 +5,8 @@ vim.g.maplocalleader = ";" -- source current file vim.keymap.set("n", " ", ":update :source", { desc = "Source current lua file" }) --- format -vim.keymap.set("n", "lf", vim.lsp.buf.format, { desc = "Format buffer with available lsp" }) +-- -- format +-- vim.keymap.set("n", "lf", vim.lsp.buf.format, { desc = "Format buffer with available lsp" }) -- easy copy/cut/paste from system clipboard vim.keymap.set({ "n", "v", "x" }, "y", '"+y', { desc = "Yank to system clipboard" })