luna config complete

This commit is contained in:
KoenDR06 2025-02-27 20:28:52 +01:00
parent 2c75ae213a
commit b963380a0a
3 changed files with 2 additions and 8 deletions

View file

@ -15,6 +15,7 @@
base = {
nix.enable = true;
locale.enable = true;
};
boot = {

View file

@ -47,9 +47,6 @@
nvim-lspconfig
nvim-notify
nvim-spectre
nvim-treesitter
nvim-treesitter-context
nvim-treesitter-textobjects
nvim-ts-autotag
nvim-ts-context-commentstring
nvim-web-devicons
@ -62,7 +59,6 @@
trouble-nvim
vim-illuminate
vim-startuptime
which-key-nvim
{
name = "LuaSnip";
path = luasnip;
@ -124,10 +120,6 @@
-- disable mason.nvim, use programs.neovim.extraPackages
{ "williamboman/mason-lspconfig.nvim", enabled = false },
{ "williamboman/mason.nvim", enabled = false },
-- import/override with your plugins
{ import = "plugins" },
-- treesitter handled by xdg.configFile."nvim/parser", put this line at the end of spec to clear ensure_installed
{ "nvim-treesitter/nvim-treesitter", opts = { ensure_installed = {} } },
},
})
'';

View file

@ -1,5 +1,6 @@
{inputs, ...}: {
imports = [
./nix.nix
./locale.nix
];
}