add cosmetic changes to comments and keybindings

This commit is contained in:
Michael Flossmann 2024-08-22 09:55:21 +02:00
parent aaf656431a
commit eb07e46c21
8 changed files with 56 additions and 10 deletions

View file

@ -11,6 +11,13 @@
leader_key = ';', -- Recommended to be a single key
buffer_leader_key = 'm', -- Per Buffer Mappings
})
-- prewritten for later
-- require("which-key").add({
-- {";", desc = "Arrow buffers"},
-- {"m", desc = "Arrow marks"}
-- })
'';
};
}

View file

@ -8,7 +8,7 @@
# Config from AstroNvim
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/heirline.lua
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/configs/heirline.lua
config = ''
config = /*lua*/ ''
local status = require("astroui.status")
require("heirline").setup({

View file

@ -36,10 +36,10 @@
action = "rename";
desc = "Rename current symbol";
};
"<leader>lR" = {
action = "rename";
desc = "Search references";
};
# "<leader>lR" = {
# action = "references";
# desc = "Search references";
# };
"<leader>lh" = {
action = "signature_help";
desc = "Signature help";

View file

@ -6,4 +6,19 @@ _:{
{ paths = "~/.config/snippets/"; }
];
};
rootOpts.keymaps = [
{
mode = "i";
key = "<C-g>";
action.__raw = ''function() require("luasnip").jump(1) end'';
options.desc = "Jump to next snippet node";
}
{
mode = "i";
key = "<C-h>";
action.__raw = ''function() require("luasnip").jump(-1) end'';
options.desc = "Jump to previous snippet node";
}
];
}

View file

@ -104,7 +104,7 @@
}
{
desc = "Find words";
key = "<leader>fg";
key = "<leader>fw";
fn = "live_grep";
}
{
@ -147,15 +147,31 @@
key = "<leader>fC";
fn = "commands";
}
{
desc = "Find man";
key = "<leader>fm";
fn = "man_pages";
}
{
desc = "Find words in all files";
key = "<leader>fm";
fn = "live_grep";
args.additional_args.__raw = ''function(args) return vim.list_extend(args, { "--hidden", "--no-ignore" }) end'';
}
{
desc = "Find themes";
key = "<leader>ft";
fn = "colortheme";
fn = "colorscheme";
args = {
enable_preview = true;
ignore_builtins = true;
};
}
{
desc = "Search diagnostics";
key = "<leader>lD";
fn = "diagnostics";
}
];
};
}

View file

@ -8,7 +8,12 @@
enable = true;
# Enable treesitter based indentation (use '=' to auto-indent)
settings.indent.enable = true;
settings = {
indent.enable = true;
highlight = {
enable = true;
};
};
# Workaround to enable incremental selection without setting default keymaps (keymaps are set globally)
# This is needed in order to set custom descriptions and avoid to have multiple keymaps
@ -33,7 +38,7 @@
}
{
mode = [ "n" "x" "o" ];
key = ";";
key = "-";
action.__raw = "function() require('nvim-treesitter.textobjects.repeatable_move').repeat_last_move_opposite() end";
options.desc = "Repeat last move in the opposite direction";
}

View file

@ -27,6 +27,8 @@
"<leader>s".name = "${icons.Session} Session";
"<leader>t".name = "${icons.Terminal} Terminal";
"<leader>u".name = "${icons.Window} UI/UX";
";".name = "Arrow buffers"; # This should move to arrow.nix when moving to which-key.add()
"m".name = "Arrow marks"; # This should move to arrow.nix when moving to which-key.add(
};
};