update nvim, hyprpanel
This commit is contained in:
parent
8fcccee072
commit
2eaa716f66
@ -27,4 +27,5 @@
|
||||
tab_bar_style = "powerline";
|
||||
};
|
||||
};
|
||||
stylix.targets.kitty.variant256Colors = true;
|
||||
}
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
@ -100,9 +100,6 @@
|
||||
# Disable showing modes in command line
|
||||
showmode = false;
|
||||
|
||||
# Always show tabline
|
||||
showtabline = 2;
|
||||
|
||||
# Show signs column
|
||||
signcolumn = "yes";
|
||||
|
||||
|
||||
@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
@ -40,7 +40,7 @@
|
||||
enable = true;
|
||||
sources = {
|
||||
diagnostics = {
|
||||
golangci_lint.enable = true;
|
||||
golangci_lint.enable = false;
|
||||
statix.enable = true;
|
||||
};
|
||||
formatting = {
|
||||
|
||||
@ -5,6 +5,7 @@
|
||||
options.disabled_filetypes.statusline =
|
||||
[ "dashboard" "alpha" "neo-tree" ];
|
||||
|
||||
options = { show_filename_only = false; };
|
||||
alwaysDivideMiddle = true;
|
||||
globalstatus = true;
|
||||
ignoreFocus = [ "neo-tree" ];
|
||||
|
||||
@ -8,6 +8,5 @@
|
||||
settings.current_line_blame = false;
|
||||
};
|
||||
trouble.enable = true;
|
||||
bufferline.enable = true;
|
||||
};
|
||||
}
|
||||
|
||||
@ -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
|
||||
];
|
||||
}
|
||||
|
||||
@ -61,11 +61,11 @@ in {
|
||||
bar.workspaces.applicationIconEmptyWorkspace = "";
|
||||
bar.workspaces.hideUnoccupied = false;
|
||||
bar.workspaces.monitorSpecific = false;
|
||||
bar.workspaces.numbered_active_indicator = "color";
|
||||
bar.workspaces.showApplicationIcons = true;
|
||||
bar.workspaces.showIcons = true;
|
||||
bar.workspaces.numbered_active_indicator = "underline";
|
||||
bar.workspaces.showApplicationIcons = false;
|
||||
bar.workspaces.showIcons = false;
|
||||
bar.workspaces.workspaces = 5;
|
||||
bar.workspaces.show_numbered = false;
|
||||
bar.workspaces.show_numbered = true;
|
||||
menus.clock.time.hideSeconds = true;
|
||||
menus.clock.time.military = true;
|
||||
menus.clock.weather.key = weatherapikey;
|
||||
|
||||
@ -128,6 +128,7 @@
|
||||
chromium
|
||||
remmina
|
||||
# inputs.zen-browser.packages."${pkgs.system}"
|
||||
marimo
|
||||
];
|
||||
|
||||
# Import my profile picture, used by the hyprpanel dashboard
|
||||
|
||||
@ -16,5 +16,13 @@
|
||||
};
|
||||
};
|
||||
};
|
||||
extraConfig.pipewire = {
|
||||
"92-clock-rate" = {
|
||||
"context.properties" = {
|
||||
"default.clock.quantum" = 2048;
|
||||
"default.clock.force-quantum" = 2048;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
};
|
||||
tmp.cleanOnBoot = true;
|
||||
kernelPackages =
|
||||
pkgs.linuxPackages_latest; # _zen, _hardened, _rt, _rt_latest, etc.
|
||||
pkgs.linuxPackages_zen; # _zen, _hardened, _rt, _rt_latest, etc.
|
||||
|
||||
# Silent boot
|
||||
kernelParams = [
|
||||
|
||||
Loading…
Reference in New Issue
Block a user