dotfiles/.config/nvchad/custom/init.lua

17 lines
323 B
Lua
Raw Permalink Normal View History

2023-04-19 03:53:25 +00:00
-- local autocmd = vim.api.nvim_create_autocmd
-- Auto resize panes when resizing nvim window
-- autocmd("VimResized", {
-- pattern = "*",
-- command = "tabdo wincmd =",
-- })
local opt = vim.opt --equivalent to :set
2023-04-19 03:53:25 +00:00
opt.tabstop = 4
opt.shiftwidth = 4
opt.expandtab = true
2023-04-19 03:53:25 +00:00
opt.colorcolumn = "80"
opt.textwidth = 80