update nvim, hyprpanel

This commit is contained in:
dim
2025-02-08 13:33:41 +07:00
parent 8fcccee072
commit 2eaa716f66
13 changed files with 28 additions and 21 deletions

View File

@@ -27,4 +27,5 @@
tab_bar_style = "powerline";
};
};
stylix.targets.kitty.variant256Colors = true;
}

View File

@@ -3,7 +3,6 @@
autoGroups = {
auto_quit.clear = true;
autoview.clear = true;
bufferline.clear = true;
checktime.clear = true;
create_dir.clear = true;
editorconfig_filetype.clear = true;

View File

@@ -12,7 +12,7 @@
./plugins/utils.nix
./plugins/dap.nix
./plugins/telescope.nix
# ./plugins/zenmode.nix
./plugins/zenmode.nix
./plugins/project.nix
./plugins/treesitter.nix

View File

@@ -100,9 +100,6 @@
# Disable showing modes in command line
showmode = false;
# Always show tabline
showtabline = 2;
# Show signs column
signcolumn = "yes";

View File

@@ -16,13 +16,9 @@
texthl = "DapLogPoint";
};
};
extensions = {
dap-go = {
enable = true;
delve.path = "${pkgs.delve}/bin/dlv";
};
dap-ui = { enable = true; };
dap-virtual-text = { enable = true; };
};
};
programs.nixvim.plugins = {
dap-virtual-text.enable = true;
dap-ui.enable = true;
};
}

View File

@@ -40,7 +40,7 @@
enable = true;
sources = {
diagnostics = {
golangci_lint.enable = true;
golangci_lint.enable = false;
statix.enable = true;
};
formatting = {

View File

@@ -5,6 +5,7 @@
options.disabled_filetypes.statusline =
[ "dashboard" "alpha" "neo-tree" ];
options = { show_filename_only = false; };
alwaysDivideMiddle = true;
globalstatus = true;
ignoreFocus = [ "neo-tree" ];

View File

@@ -8,6 +8,5 @@
settings.current_line_blame = false;
};
trouble.enable = true;
bufferline.enable = true;
};
}

View File

@@ -1,5 +1,10 @@
# Thunar is a file explorer
{ pkgs, ... }: {
# ctrl + m to toggle the menubar
home.packages = with pkgs.xfce; [ thunar xfconf tumbler ];
home.packages = with pkgs; [
xfce.thunar
xfce.xfconf
xfce.tumbler
file-roller
];
}