From d8f42809ea51ff14a6c6a714df2da2023a788626 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Mon, 3 Nov 2025 23:25:40 +0100 Subject: [PATCH] feat: disable lsp format command. --- lua/config/keybindings.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" })