diff options
| author | Jakub Stachurski <jakub@wilkuu.xyz> | 2026-05-29 21:36:18 +0200 |
|---|---|---|
| committer | Jakub Stachurski <jakub@wilkuu.xyz> | 2026-05-29 21:36:18 +0200 |
| commit | 85d8f06cec5e0243b3157f3cd4fb0f37997822a3 (patch) | |
| tree | 8c8f90068b65ad16d71ed7b0d0d257bd50fa1c87 /home-modules | |
| parent | 604b8e1850b19bf5acd2042b138dcd5a17698b65 (diff) | |
Move over some more references
Diffstat (limited to 'home-modules')
| -rw-r--r-- | home-modules/apps/nvim/default.nix | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/home-modules/apps/nvim/default.nix b/home-modules/apps/nvim/default.nix index 7aad816..ff541b8 100644 --- a/home-modules/apps/nvim/default.nix +++ b/home-modules/apps/nvim/default.nix @@ -20,16 +20,25 @@ in }; programs.neovim = { - enable = false; + enable = true; defaultEditor = true; viAlias = true; vimAlias = true; vimdiffAlias = true; - withPython3 = false; - withNodeJs = false; - withRuby = false; + withPython3 = true; + withNodeJs = true; + withRuby = true; # coc.enable = false; + + initLua = lib.mkMerge [ + '' + -- Load in the real config, if exists + local ok, _ pcall (require, "entry") + if not ok then + vim.notify("lua/entry.lua not found, no config to load", vim.log.levels.DEBUG) + end'' + ]; }; home.file = lib.mkIf config.homeapps.nvim.lsp { @@ -53,10 +62,10 @@ in ts_ls vue_ls ])) - [ - neovim - neovim-node-client - ] + # [ + # neovim + # neovim-node-client + # ] ]; }; } |
