Update; Updated hardware-config; updated networking; changes to matrix; migrated to different switch emulator

This commit is contained in:
Jurn Wubben 2025-06-10 00:47:19 +02:00
parent eecad4ed3c
commit bf9497b9dd
10 changed files with 80 additions and 93 deletions

View file

@ -1,6 +1,6 @@
{
inputs,
osConfig,
pkgs,
...
}: {
home.sessionVariables = {EDITOR = "nvim";};
@ -39,6 +39,7 @@
clipboard = {
enable = true;
providers.wl-copy.enable = true;
registers = "unnamedplus";
};
binds = {
whichKey.enable = true;
@ -71,6 +72,15 @@
hover = "gh";
codeAction = "<leader>.";
};
# Emmet LSP. No option for this yet. https://github.com/NotAShelf/nvf/pull/867
lspconfig.sources.emmet_language_server = ''
lspconfig.emmet_language_server.setup {
capabilities = capabilities,
on_attach = default_on_attach,
cmd = { "${pkgs.emmet-language-server}/bin/emmet-language-server", "--stdio" }
}
'';
};
autopairs.nvim-autopairs.enable = true;
autocomplete.nvim-cmp.enable = true;