15 lines
315 B
Lua
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" }
|