added plugin to detect indentation style

This commit is contained in:
Robert Altner 2024-05-17 10:29:17 +02:00
parent df05c54d5b
commit a8300a0448
No known key found for this signature in database
GPG key ID: 58794C52DAF9EAD8
2 changed files with 26 additions and 0 deletions

View file

@ -1,3 +1,7 @@
filetype plugin indent on
syntax enable
let maplocalleader = "\\"
let g:vimspector_enable_mappings = "VISUAL_STUDIO"
let g:startify_fortune_use_unicode = 1

View file

@ -89,5 +89,27 @@ return {
cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" },
ft = { "markdown" },
build = function() vim.fn["mkdp#util#install"]() end,
},
{
"lervag/vimtex",
lazy = false, -- we don't want to lazy load VimTeX
-- tag = "v2.15", -- uncomment to pin to a specific release
init = function()
-- VimTeX configuration goes here
end
},
{
"NMAC427/guess-indent.nvim",
lazy = false,
init = function()
require("guess-indent").setup{
buftype_exclude = {
"help",
"nofile",
"terminal",
"prompt"
}
}
end
}
}