Reformat all file / Add md peview + ansiblels

This commit is contained in:
Alessandro
2024-10-18 11:10:45 +02:00
parent 36a747e4a1
commit e264fcba6a
8 changed files with 60 additions and 40 deletions

View File

@@ -8,7 +8,7 @@ require "nvchad.options"
vim.lsp.inlay_hint.enable(true)
vim.o.foldcolumn = "0" -- '0' is not bad
vim.o.foldlevel = 99 -- Using ufo provider need a large value, feel free to decrease the value
vim.o.foldlevel = 99 -- Using ufo provider need a large value, feel free to decrease the value
vim.o.foldlevelstart = 99
vim.o.foldenable = true
vim.opt.fillchars = {
@@ -23,3 +23,14 @@ vim.opt.fillchars = {
}
vim.o.pumheight = 10
vim.api.nvim_create_autocmd("FileType", {
pattern = "java",
command = "setlocal shiftwidth=4 tabstop=4"
})
vim.filetype.add({
extension = {
yml = 'yaml.ansible'
}
})