nix/home/file/nvim/module/config/Tab.nix

16 lines
378 B
Nix
Raw Normal View History

2024-11-04 04:37:29 +03:00
{ ... }: let
indentDefault = 2;
in {
text = ''
vim.opt.autoindent = true
vim.opt.expandtab = false
-- vim.opt.smartindent = true
vim.opt.shiftwidth = ${toString indentDefault}
vim.opt.softtabstop = ${toString indentDefault}
vim.opt.tabstop = ${toString indentDefault}
2024-04-06 03:03:58 +03:00
2024-11-04 04:37:29 +03:00
-- Disable Markdown forced formatting.
vim.g.markdown_recommended_style = 0
'';
2024-04-06 03:03:58 +03:00
}