somewhat minimal neovim config to match helix (incomplete)

This commit is contained in:
William 2025-08-16 18:50:51 -03:00
parent bcfa8465bf
commit c17f8d9d87
6 changed files with 197 additions and 22 deletions

View file

@ -30,6 +30,17 @@
];
};
nixvim.plugins = {
treesitter.enable = true;
multicursors.enable = true;
lspconfig.enable = true;
cmp.enable = true;
which-key.enable = true;
telescope.enable = true;
undotree.enable = true;
web-devicons.enable = true;
};
password-store.enable = true;
direnv = {
@ -127,6 +138,16 @@
pkgs.obs-studio-plugins.obs-pipewire-audio-capture
];
};
rio = {
enable = true;
settings = {
window = {
width = 1121;
height = 633;
};
};
};
};
})
];