Files
nvim/lua/custom/init.lua
2024-01-05 20:29:03 -05:00

15 lines
315 B
Lua

-- local autocmd = vim.api.nvim_create_autocmd
-- Auto resize panes when resizing nvim window
-- autocmd("VimResized", {
-- pattern = "*",
-- command = "tabdo wincmd =",
-- })
--
local opt = vim.opt
opt.laststatus = 3
opt.swapfile = false
vim.g.lua_snippets_path = { vim.fn.stdpath "config" .. "/snippets" }