Skip to content

Commit 13ea631

Browse files
committed
feat: startup time 300ms -> 200ms
1 parent 6f7f0b9 commit 13ea631

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@
534534
luaRcContent =
535535
builtins.concatStringsSep "\n" (map luaRequire luaModules)
536536
;
537-
wrapperArgs = ["--suffix" "PATH" ":" "${pkgs.lib.makeBinPath /* great place for pipe operator */ (with pkgs;[ ripgrep git terraform-ls lua-language-server clang-tools myRSetup nodejs nodePackages.vscode-json-languageserver ripgrep fd])}"];
537+
wrapperArgs = ["--suffix" "PATH" ":" "${pkgs.lib.makeBinPath /* great place for pipe operator */ (with pkgs;[ ripgrep git terraform-ls lua-language-server clang-tools myRSetup nodejs nodePackages.vscode-json-languageserver ripgrep fd nil])}"];
538538
};
539539
myNeovim =
540540
pkgs.wrapNeovimUnstable

lua_modules/essentials.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
vim.loader.enable(true)
12
vim.g.rustfmt_autosave = true
23
vim.g.diagnostics_visible = true
34
vim.g.inlay_hints_visible = true

lua_modules/lsp.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ require'lspconfig'.ocamllsp.setup{
282282
cmd = { 'ocamllsp', '--fallback-read-dot-merlin' },
283283

284284
}
285+
require'lspconfig'.nil_ls.setup{}
285286

286287
local r = require("symbols.recipes")
287288
require("symbols").setup(r.DefaultFilters, r.AsciiSymbols, {

0 commit comments

Comments
 (0)