nvim/lua/plugins/project.lua
Evie Litherland-Smith ea722bb23d lspconfig update and cspell config file
Start checking for executable before registering lsp server
Add missing dependencies for direnv, indent_blankline and nvim_neorg
Add standard .cspell.json, make now links it to home directory
2023-06-12 18:59:08 +01:00

13 lines
296 B
Lua

return {
"ahmedkhalf/project.nvim",
cond = not vim.g.neovide and not vim.g.vscode,
name = "project_nvim",
event = { "BufReadPre", "BufNewFile" },
config = true,
opts = {
ignore_lsp = { "null-ls" },
show_hidden = true,
silent_chdir = true,
},
}