update settings
This commit is contained in:
parent
1725495890
commit
4640407d14
2 changed files with 40 additions and 22 deletions
|
|
@ -21,8 +21,9 @@
|
|||
settings.incremental_selection = {
|
||||
enable = true;
|
||||
keymaps = lib.mkForce { };
|
||||
highlight.enable = true;
|
||||
};
|
||||
|
||||
settings.highlight.enable = true;
|
||||
};
|
||||
|
||||
rootOpts = {
|
||||
|
|
|
|||
|
|
@ -5,31 +5,48 @@
|
|||
{
|
||||
opts = {
|
||||
enable = true;
|
||||
|
||||
|
||||
# Disable which-key when in neo-tree or telescope
|
||||
|
||||
settings = {
|
||||
icons.group = "";
|
||||
window.border = "single";
|
||||
|
||||
# Disable which-key when in neo-tree or telescope
|
||||
disable.filetypes = [
|
||||
# Customize section names (prefixed mappings)
|
||||
spec = [
|
||||
{ __unkeyed = "<leader>b"; group = "Buffers"; icon = icons.Tab; }
|
||||
{ __unkeyed = "<leader>bs"; group = "Sort Buffers"; icon = icons.Sort;}
|
||||
{ __unkeyed = "<leader>d"; group = "Debugger"; icon = icons.Debugger;}
|
||||
{ __unkeyed = "<leader>f"; group = "Find"; icon = icons.Search;}
|
||||
{ __unkeyed = "<leader>g"; group = "Git"; icon = icons.Git;}
|
||||
{ __unkeyed = "<leader>l"; group = "Language Tools"; icon = icons.ActiveLSP;}
|
||||
{ __unkeyed = "<leader>m"; group = " Markdown"; }
|
||||
{ __unkeyed = "<leader>s"; group = "Session"; icon = icons.Session;}
|
||||
{ __unkeyed = "<leader>t"; group = "Terminal"; icon = icons.Terminal;}
|
||||
{ __unkeyed = "<leader>u"; group = "UI/UX"; icon = icons.Window;}
|
||||
];
|
||||
|
||||
disable.ft = [
|
||||
"TelescopePrompt"
|
||||
"neo-tree"
|
||||
"neo-tree-popup"
|
||||
];
|
||||
|
||||
# Customize section names (prefixed mappings)
|
||||
registrations = {
|
||||
"<leader>b".name = "${icons.Tab} Buffers";
|
||||
"<leader>bs".name = "${icons.Sort} Sort Buffers";
|
||||
"<leader>d".name = "${icons.Debugger} Debugger";
|
||||
"<leader>f".name = "${icons.Search} Find";
|
||||
"<leader>g".name = "${icons.Git} Git";
|
||||
"<leader>l".name = "${icons.ActiveLSP} Language Tools";
|
||||
"<leader>m".name = " Markdown";
|
||||
"<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(
|
||||
};
|
||||
|
||||
|
||||
# registrations = {
|
||||
# "<leader>b".name = "${icons.Tab} Buffers";
|
||||
# "<leader>bs".name = "${icons.Sort} Sort Buffers";
|
||||
# "<leader>d".name = "${icons.Debugger} Debugger";
|
||||
# "<leader>f".name = "${icons.Search} Find";
|
||||
# "<leader>g".name = "${icons.Git} Git";
|
||||
# "<leader>l".name = "${icons.ActiveLSP} Language Tools";
|
||||
# "<leader>m".name = " Markdown";
|
||||
# "<leader>s".name = "${icons.Session} Session";
|
||||
# "<leader>t".name = "${icons.Terminal} Terminal";
|
||||
# "<leader>u".name = "${icons.Window} UI/UX";
|
||||
# };
|
||||
};
|
||||
|
||||
# Enable catppuccin colors
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue