use nvim lua instead of nixvim again
This commit is contained in:
parent
24e235063f
commit
38ff8d7b71
1 changed files with 10 additions and 2 deletions
|
|
@ -1,16 +1,24 @@
|
|||
{ config, pkgs, inputs, ... }:
|
||||
{ pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
# needed for the nvim config, neovim itself is a system package already
|
||||
ripgrep
|
||||
];
|
||||
programs.nixvim = {
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
|
||||
extraConfig = lib.fileContents ./nvim.lua;
|
||||
};
|
||||
programs.nixvim = {
|
||||
enable = false;
|
||||
defaultEditor = true;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
|
||||
colorschemes.tokyonight = {
|
||||
enable = true;
|
||||
style = "night";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue