all repos

init.lua @ d01c01d5ea601c961a0944212fc330bbdb9eb47b

my nvim config
3 files changed, 7 insertions(+), 11 deletions(-)
update keymaps
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2023-11-15 14:53:13 +0200
Parent: b8903ec
M lua/core/options.lua

@@ -2,7 +2,7 @@ vim.g.editorconfig = true

-- leader vim.g.mapleader = " " -vim.g.maplocalleader = ";" +vim.g.maplocalleader = "," -- indenting vim.o.smartindent = true
M lua/plugins/navigation.lua

@@ -14,11 +14,11 @@ "ThePrimeagen/harpoon",

config = true, keys = { { "<leader>a", map("harpoon.mark", "add_file") }, - { "<leader>1", map("harpoon.ui", "toggle_quick_menu") }, - { "<localleader>a", map("harpoon.ui", "nav_file", "1") }, - { "<localleader>s", map("harpoon.ui", "nav_file", "2") }, - { "<localleader>d", map("harpoon.ui", "nav_file", "3") }, - { "<localleader>f", map("harpoon.ui", "nav_file", "4") }, + { "<C-f>", map("harpoon.ui", "toggle_quick_menu") }, + { "<A-f>", map("harpoon.ui", "nav_file", "1") }, + { "<A-d>", map("harpoon.ui", "nav_file", "2") }, + { "<A-s>", map("harpoon.ui", "nav_file", "3") }, + { "<A-a>", map("harpoon.ui", "nav_file", "4") }, }, },
M lua/plugins/neotest.lua

@@ -3,19 +3,15 @@ return {

"nvim-neotest/neotest", keys = { { "<leader>tn", map("neotest", "run.run") }, - { "<leader>ta", map("neotest", "run.attach") }, { "<leader>ts", map("neotest", "summary.toggle") }, { "<leader>tS", map("neotest", "run.stop") }, { "<leader>to", map("neotest", "output.open") }, { "<leader>tO", map("neotest", "output_panel.toggle") }, - { "<leader>tww", map("neotest", "watch.watch") }, - { "<leader>tws", map("neotest", "watch.stop") }, - { "<leader>twt", map("neotest", "watch.toggle") }, { "]t", map("neotest", "jump.next") }, { "[t", map("neotest", "jump.prev") }, { "]T", map("neotest", "jump.next", "{status = 'failed'}") }, { "[T", map("neotest", "jump.prev", "{status = 'failed'}") }, - { "<leader>td", map("neotest", "run.run", "{strategy = 'dap'}") }, + { "<leader>tw", map("neotest", "watch.toggle") }, { "<leader>tt", function()