update markdown tab size

This commit is contained in:
Hadi 2024-10-15 14:24:58 +02:00
parent 3910bef1bf
commit 4733414bb3
2 changed files with 4 additions and 5 deletions

View File

@ -6,7 +6,6 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
- [ ] Nixvim - [ ] Nixvim
- [ ] Change headings foreground - [ ] Change headings foreground
- [ ] Markdown tab size 2
- [ ] neotest golang - [ ] neotest golang
- [ ] nvim dap - [ ] nvim dap

View File

@ -114,10 +114,10 @@ in {
}; };
extraFiles = { extraFiles = {
# TODO: Not working for some reasons # TODO: Not working for some reasons
"ftplugin/markdown.lua".text = '' "after/ftplugin/markdown.lua".text = ''
vim.opt.tabstop = 2 vim.bo.tabstop = 2
vim.opt.shiftwidth = 2 vim.bo.shiftwidth = 2
vim.opt.expandtab = true vim.bo.expandtab = true
''; '';
}; };
highlight = { highlight = {