nix/module/common/nvim/config/Tab.lua

10 lines
234 B
Lua
Raw Normal View History

vim.opt.autoindent = true
vim.opt.expandtab = false
vim.opt.shiftwidth = 2
-- vim.opt.smartindent = true
vim.opt.softtabstop = 2
vim.opt.tabstop = 2
-- Disable Markdown forced formatting.
vim.g.markdown_recommended_style = 0