2024-08-03 14:57:18 +03:00
|
|
|
local map = vim.keymap.set
|
|
|
|
local ufo = require("ufo")
|
|
|
|
|
|
|
|
map("n", ";", ":", { desc = "CMD enter command mode" })
|
|
|
|
|
2024-08-03 22:08:40 +03:00
|
|
|
map("i", "<C-h>", "<Left>", { desc = "move left" })
|
|
|
|
map("i", "<C-l>", "<Right>", { desc = "move right" })
|
|
|
|
map("i", "<C-j>", "<Down>", { desc = "move down" })
|
|
|
|
map("i", "<C-k>", "<Up>", { desc = "move up" })
|
|
|
|
|
|
|
|
map("n", "<C-h>", "<C-w>h", { desc = "switch window left" })
|
|
|
|
map("n", "<C-l>", "<C-w>l", { desc = "switch window right" })
|
|
|
|
map("n", "<C-j>", "<C-w>j", { desc = "switch window down" })
|
|
|
|
map("n", "<C-k>", "<C-w>k", { desc = "switch window up" })
|
|
|
|
|
|
|
|
map("n", "<C-n>", "<cmd>NeoTreeShowToggle<CR>", { desc = "nvimtree toggle window" })
|
|
|
|
map("n", "<leader>e", "<cmd>NeoTreeFocus<CR>", { desc = "nvimtree focus window" })
|
|
|
|
|
|
|
|
map("n", "<leader>n", "<cmd>set norelativenumber<CR>", { desc = "toggle line number" })
|
|
|
|
map("n", "<leader>rn", "<cmd>set relativenumber<CR>", { desc = "toggle relative number" })
|
|
|
|
|
2024-08-03 14:57:18 +03:00
|
|
|
map("n", "mk", "<cmd>RustLsp moveItem up<cr>")
|
|
|
|
map("n", "m,", "<cmd>RustLsp moveItem down<cr>")
|
|
|
|
map("n", "rs", "<cmd>RustLsp run<cr>")
|
|
|
|
map("n", "hh", "<cmd>RustLsp hover actions<cr>")
|
|
|
|
map("n", "ca", "<cmd>RustLsp codeAction<cr>")
|
|
|
|
map("n", "<C-s>", "<cmd>w!<cr>")
|
|
|
|
map("i", "<C-s>", "<cmd>w!<cr>")
|
|
|
|
|
|
|
|
map("n", "<leader>sn", "<Cmd>split<cr>", { desc = "Horizontal split" })
|
|
|
|
map("n", "<leader>sv", "<Cmd>vsplit<cr>", { desc = "Vertical split" })
|
|
|
|
|
|
|
|
map("n", "<leader>dr", "<cmd> DapContinue <cr>", { desc = "Continue debug" } )
|
|
|
|
|
|
|
|
map("n", "do", function()
|
|
|
|
require("dapui").open()
|
|
|
|
end, { desc = "Open DAP ui" })
|
|
|
|
map("n", "dc", function()
|
|
|
|
require("dapui").close()
|
|
|
|
end, { desc = "Start or continue debug" })
|
|
|
|
map("n", "dt", function()
|
|
|
|
require("dapui").toggle()
|
|
|
|
end, { desc = "Toggle DAP ui" })
|
|
|
|
|
|
|
|
map("n", "<F9>", "<cmd>DapContinue<cr>", { desc = "Start or continue debug" })
|
|
|
|
|
|
|
|
map("n", "+", "<cmd>vertical resize +5<cr>", { desc = "Increase vertical buffer" }) -- make the window biger vertically
|
|
|
|
map("n", "-", "<cmd>vertical resize -5<cr>", { desc = "Decrease vertical buffer" }) -- make the window smaller vertically
|
|
|
|
map("n", "_", "<cmd>horizontal resize +2<cr>", { desc = "Increase horizontal buffer" }) -- make the window bigger horizontally by pressing shift and =
|
|
|
|
map("n", "=", "<cmd>horizontal resize -2<cr>", { desc = "Decrease horizontal buffer" }) -- make the window smaller horizontally by pressing shift and -
|
|
|
|
|
|
|
|
map('n', 'zR', ufo.openAllFolds)
|
|
|
|
map('n', 'zM', ufo.closeAllFolds)
|
2024-08-03 22:08:40 +03:00
|
|
|
|