aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68/remap.lua
diff options
context:
space:
mode:
authorpml68 <tutorialmester@gmail.com>2024-04-05 22:29:44 +0200
committerpml68 <tutorialmester@gmail.com>2024-04-05 22:30:04 +0200
commit428db0b5fe41ae854c41c239fcfdd6adf7c6edc1 (patch)
tree8387c26e49f18af9fef9ce83fe8bd7d09c3e7b70 /lua/pml68/remap.lua
parentfeat: add svelte parser (diff)
downloadnvim-428db0b5fe41ae854c41c239fcfdd6adf7c6edc1.tar.gz
feat: remove unused lua LSP workspace libraries, unused remap
Diffstat (limited to '')
-rw-r--r--lua/pml68/remap.lua8
1 files changed, 0 insertions, 8 deletions
diff --git a/lua/pml68/remap.lua b/lua/pml68/remap.lua
index 3400a67..8413b39 100644
--- a/lua/pml68/remap.lua
+++ b/lua/pml68/remap.lua
@@ -7,14 +7,6 @@ vim.keymap.set("n", "<leader>u", "<cmd>UndotreeToggle<CR>")
vim.keymap.set("n", "<leader>n", "<cmd> set nu! <CR>")
vim.keymap.set("n", "<leader>rn", "<cmd> set rnu! <CR>")
--- keyboard problems (temporary)
-vim.keymap.set("n", "<leader>s", function()
- local pos = vim.api.nvim_win_get_cursor(0)[2]
- local line = vim.api.nvim_get_current_line()
- local nline = line:sub(0, pos) .. "<" .. line:sub(pos + 1)
- vim.api.nvim_set_current_line(nline)
-end)
-
-- switch between windows
vim.keymap.set("n", "<C-h>", "<C-w>h")
vim.keymap.set("n", "<C-l>", "<C-w>l")