finish hyprland

This commit is contained in:
Nico
2025-04-01 21:04:27 +02:00
parent 25ab3a589b
commit 6419427a05
48 changed files with 1127 additions and 105 deletions

View File

@@ -0,0 +1,36 @@
{ inputs, pkgs, lib, config, ...}:
{
imports = [ inputs.nvf.homeManagerModules.default ];
programs.nvf = {
enable = true;
# your settings need to go into the settings attribute set
# most settings are documented in the appendix
settings = {
vim.viAlias = false;
vim.vimAlias = true;
vim.theme = {
enable = true;
name = "catppuccin";
style = "mocha";
};
vim.statusline.lualine.enable = true;
vim.binds.cheatsheet.enable = true;
vim.binds.whichKey.enable = true;
vim.projects.project-nvim.setupOpts.show_hidden = true;
vim.telescope.enable = true;
vim.autocomplete.blink-cmp.enable = true;
vim.lsp = {
enable = false;
};
vim.languages.clang.enable = true;
vim.languages.rust.enable = true;
};
};
}