Updated config

This commit is contained in:
2024-02-01 23:59:16 +01:00
parent 973894cfab
commit 7face48c6f
8 changed files with 42 additions and 12 deletions

View File

@ -16,12 +16,24 @@ on({ "BufNewFile", "BufRead" }, {
on({ "VimEnter" }, {
callback = function()
-- Change file to its directory if needed
local file = vim.api.nvim_buf_get_name(0)
if vim.fn.isdirectory(file) == 0 then
file = vim.fs.dirname(file)
end
-- Switch to root directory of the project
local root_patterns = { ".git", "go.mod", "init.lua" }
local root_dir = vim.fs.dirname(vim.fs.find(root_patterns, { upward = true })[1])
local root_dir = vim.fs.dirname(vim.fs.find(root_patterns, {
upward = true,
path = file,
})[1])
if root_dir then
vim.api.nvim_set_current_dir(root_dir)
else
vim.api.nvim_set_current_dir(file)
end
-- Open file explorer if we have enough space