Remove ruler for python files

This commit is contained in:
flyingscorpio@clevo 2023-01-23 13:45:31 +01:00
parent 243d542291
commit 7aa8b2a15f

View file

@ -32,11 +32,6 @@ vim.api.nvim_create_autocmd("FileType", {
command = "setlocal foldmethod=indent",
group = group
})
vim.api.nvim_create_autocmd("FileType", {
pattern = "python",
command = "setlocal colorcolumn=80",
group = group
})
vim.api.nvim_create_autocmd("FileType", {
pattern = { "make", "asm" },
command = "setlocal noexpandtab tabstop=6 shiftwidth=6 softtabstop=0",