This commit is contained in:
meml0rz
2024-11-12 22:50:31 +01:00
parent 7033122dd3
commit 5f96c09930
3 changed files with 12 additions and 8 deletions

View File

@ -6,15 +6,12 @@
./lsp.nix
./neotree.nix
./opts.nix
./lualine.nix
];
programs.nixvim = {
enable = true;
colorschemes.oxocarbon.enable = true;
plugins = {
lualine = {
enable = true;
};
};
};
}

View File

@ -0,0 +1,10 @@
{ config, pkgs, nixvim, ... }:
{
programs.nixvim = {
plugins = {
lualine = {
enable = true;
};
};
};
}

View File

@ -1,7 +1,7 @@
{ config, pkgs, nixvim, ... }:
{
programs.nixvim = {
extraConfig = ''
extraConfigLua = ''
local map = vim.api.nvim_set_keymap
local opts = { noremap = true, silent = true }
@ -22,8 +22,5 @@
vim.opt.softtabstop = 4
'';
option = {
};
};
}