36 lines
799 B
Lua
Raw Normal View History

2023-08-19 17:22:56 +00:00
local on = vim.api.nvim_create_autocmd
2023-07-29 22:50:07 +00:00
2023-08-20 22:09:00 +00:00
on({ "TermOpen", "TermEnter" }, {
callback = function()
2023-08-23 20:59:04 +00:00
vim.opt_local.signcolumn = "no"
2023-08-20 22:09:00 +00:00
end,
})
on({ "BufNewFile", "BufRead" }, {
pattern = { "*.txt", "*.md" },
callback = function()
2023-08-22 14:51:35 +00:00
vim.opt_local.wrap = true
vim.opt_local.signcolumn = "no"
2023-08-20 22:09:00 +00:00
end,
})
2024-01-22 14:04:33 +00:00
on({ "VimEnter" }, {
callback = function()
-- 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])
if root_dir then
vim.api.nvim_set_current_dir(root_dir)
end
-- Open file explorer if we have enough space
local files = require("nvim-tree.api")
local width = vim.go.columns
if width > 120 then
files.tree.toggle({ focus = false })
end
end,
})