diff options
| -rw-r--r-- | pkgs/custom-neovim/default.nix | 5 | ||||
| -rw-r--r-- | pkgs/custom-neovim/nvim/lua/init.lua | 1 |
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/custom-neovim/default.nix b/pkgs/custom-neovim/default.nix index acf24f1..57eea1d 100644 --- a/pkgs/custom-neovim/default.nix +++ b/pkgs/custom-neovim/default.nix @@ -7,8 +7,7 @@ inputs.mnw.lib.wrap pkgs { plugins = with pkgs.vimPlugins; { dev.config = { - pure = ./config; - impure = "/home/culsans/Sync/setup/pkgs/custom-neovim"; + pure = ./nvim; }; start = [ # Core Plugins @@ -33,7 +32,7 @@ inputs.mnw.lib.wrap pkgs { opt = []; }; - luaFiles = [./config/init.lua]; + # luaFiles = [./config/init.lua]; extraLuaPackages = lua: with lua; [ diff --git a/pkgs/custom-neovim/nvim/lua/init.lua b/pkgs/custom-neovim/nvim/lua/init.lua new file mode 100644 index 0000000..5507366 --- /dev/null +++ b/pkgs/custom-neovim/nvim/lua/init.lua @@ -0,0 +1 @@ +vim.cmd.colorscheme("evening") |
