feat(config): various config updates
Packaged updates to configuration.
This commit is contained in:
@@ -2,6 +2,12 @@
|
||||
-- │ Early interventions │
|
||||
-- ╰─────────────────────────────────────────────────────────╯
|
||||
|
||||
-- Execute project-specific configuration if it exists
|
||||
local project_config = vim.fn.getcwd() .. '/.nvim.lua'
|
||||
if vim.fn.filereadable(project_config) == 1 then
|
||||
dofile(project_config)
|
||||
end
|
||||
|
||||
-- Address vim.hl bug impacting `:Inspect` command
|
||||
---@see https://github.com/neovim/neovim/issues/31675
|
||||
vim.hl = vim.highlight
|
||||
|
||||
Reference in New Issue
Block a user