diff options
| author | ottjk <joshott16@gmail.com> | 2024-06-26 11:22:03 +0200 |
|---|---|---|
| committer | ottjk <joshott16@gmail.com> | 2024-06-26 11:22:03 +0200 |
| commit | 091c1c215aae29f804796ce11baedfc6645e2d51 (patch) | |
| tree | ad301f2725f694df4a916c0eec08156638e65ea1 | |
| parent | df3b64f57cd50fdb7ef8b2a464260b04f7d25956 (diff) | |
| download | dotfiles-091c1c215aae29f804796ce11baedfc6645e2d51.tar.gz dotfiles-091c1c215aae29f804796ce11baedfc6645e2d51.zip | |
nvim knob turns
| -rw-r--r-- | nvim/after/plugin/lsp.lua | 2 | ||||
| -rw-r--r-- | nvim/after/plugin/treesitter.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/nvim/after/plugin/lsp.lua b/nvim/after/plugin/lsp.lua index 2db301b..375ac58 100644 --- a/nvim/after/plugin/lsp.lua +++ b/nvim/after/plugin/lsp.lua @@ -49,7 +49,7 @@ require("mason-lspconfig").setup_handlers { ["julials"] = function () lspconfig.julials.setup { on_attach = on_attach, - julia_env_path = "/home/josh/.julia/environments/v1.9/", + julia_env_path = "/home/josh/.julia/environments/v1.10/", filetypes = { "julia", "jl" }, single_file_support = true } diff --git a/nvim/after/plugin/treesitter.lua b/nvim/after/plugin/treesitter.lua index 268e901..1a5631c 100644 --- a/nvim/after/plugin/treesitter.lua +++ b/nvim/after/plugin/treesitter.lua @@ -1,6 +1,6 @@ require'nvim-treesitter.configs'.setup { -- A list of parser names, or "all" (the five listed parsers should always be installed) - ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "julia", "rust" }, + ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "julia", "rust", "latex" }, -- Install parsers synchronously (only applied to `ensure_installed`) sync_install = false, |