added plugin to detect indentation style
This commit is contained in:
parent
df05c54d5b
commit
a8300a0448
4
init.vim
4
init.vim
|
@ -1,3 +1,7 @@
|
||||||
|
filetype plugin indent on
|
||||||
|
syntax enable
|
||||||
|
let maplocalleader = "\\"
|
||||||
|
|
||||||
let g:vimspector_enable_mappings = "VISUAL_STUDIO"
|
let g:vimspector_enable_mappings = "VISUAL_STUDIO"
|
||||||
let g:startify_fortune_use_unicode = 1
|
let g:startify_fortune_use_unicode = 1
|
||||||
|
|
||||||
|
|
|
@ -89,5 +89,27 @@ return {
|
||||||
cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" },
|
cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" },
|
||||||
ft = { "markdown" },
|
ft = { "markdown" },
|
||||||
build = function() vim.fn["mkdp#util#install"]() end,
|
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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue