From a8300a04485510ff2fe937271278861cb81f3b34 Mon Sep 17 00:00:00 2001 From: Robert Altner Date: Fri, 17 May 2024 10:29:17 +0200 Subject: [PATCH] added plugin to detect indentation style --- init.vim | 4 ++++ lua/plugins.lua | 22 ++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/init.vim b/init.vim index 6f6e4dd..dbbca23 100644 --- a/init.vim +++ b/init.vim @@ -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 diff --git a/lua/plugins.lua b/lua/plugins.lua index 72172d7..6aa0d19 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -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 } }