[Alacritty] Removes config. [rofi] Some more config

This commit is contained in:
2025-03-26 10:23:18 -07:00
parent 415d1e11a9
commit 0ddb2989b4
4 changed files with 14 additions and 60 deletions

View File

@@ -6,3 +6,12 @@
--
-- Or remove existing autocmds by their group name (which is prefixed with `lazyvim_` for the defaults)
-- e.g. vim.api.nvim_del_augroup_by_name("lazyvim_wrap_spell")
vim.api.nvim_create_autocmd("FileType", {
pattern = { "markdown" },
callback = function()
vim.bo.shiftwidth = 4
vim.bo.tabstop = 4
vim.bo.softtabstop = 4
end,
})