nvim/after/ftplugin/text.lua
Ray Andrew 497a49f55d
update
2023-12-14 17:39:57 -06:00

11 lines
326 B
Lua

vim.opt_local.tabstop = 4
vim.opt_local.softtabstop = 4
vim.opt_local.shiftwidth = 4
vim.opt_local.expandtab = false
vim.opt_local.wrap = true
-- disable indentation
vim.opt_local.autoindent = false
vim.opt_local.smartindent = false
vim.opt_local.cindent = false
-- vim.opt_local.indentexpr = ""
-- vim.opt_local.paste = true