big changes

This commit is contained in:
fwastring 2025-12-05 20:04:50 +01:00
parent 04fdbf9d61
commit f1862988ce
9 changed files with 187 additions and 98 deletions

View file

@ -25,6 +25,19 @@
programs.home-manager.enable = true;
programs.fish.enable = true;
programs.alacritty = {
enable = true;
# theme = "catppuccin_${theme}";
theme = "catppuccin_mocha";
settings = {
font = {
normal = {
family = lib.mkForce "FiraCode Nerd Font Mono";
};
size = lib.mkForce 16;
};
};
};
home.username = "fw";
home.homeDirectory = "/home/fw";

View file

@ -65,15 +65,19 @@
evince
spotify
firefox
ipcalc
ipcalc
vial
via
remmina
dbeaver-bin
dbeaver-bin
# ansible
# freecad-wayland
# TUI
codex
gemini-cli
# Browsers
librewolf

View file

@ -291,6 +291,8 @@ with lib;
# special
"SUPER+SHIFT, code:201, exec, confetti"
",XF86Tools , exec, ${pkgs.playerctl}/bin/playerctl play-pause"
",XF86Launch5 , exec, ${pkgs.hyprlock}/bin/hyprlock"
];
bindm = [

View file

@ -97,6 +97,17 @@ with lib;
key = "<leader>lf";
action = "<cmd>lua vim.lsp.buf.format()<CR>";
}
{
mode = "n";
key = "go";
action = "<cmd>lua vim.diagnostic.open_float()<CR>";
}
{
mode = "n";
key = "gd";
action = "<C-]><CR>";
options.silent = true;
}
{
mode = "n";
key = "<leader>gg";
@ -183,6 +194,7 @@ with lib;
plugins = {
web-devicons.enable = true;
cmp-spell.enable = true;
lualine = {
enable = true;
@ -262,6 +274,7 @@ with lib;
sources = [
{ name = "nvim_lsp"; }
{ name = "luasnip"; }
# { name = "spell"; }
];
};
};
@ -296,8 +309,16 @@ with lib;
"BufNewFile"
];
pattern = "*.{md,typ}";
command = "setlocal spell spelllang=en";
command = "setlocal spell spelllang=en,sv";
}
# {
# event = [
# "BufRead"
# "BufNewFile"
# ];
# pattern = "*.{md,typ}";
# command = "setlocal spell spelllang=en";
# }
];
};