diff options
author | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-04-28 21:16:39 +0530 |
---|---|---|
committer | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-04-28 21:16:39 +0530 |
commit | 1a8175b6bd3f19c7d1b0ad12cbe51aa4a91f69ad (patch) | |
tree | 6121ea420f4daf284fe388db177f4df5a7f428d8 /lua | |
parent | f87f547a904bbc337d15d2120619edd16e96b05f (diff) |
nvim: plugins: don't lazy load vimtex
Diffstat (limited to 'lua')
-rw-r--r-- | lua/plugins.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index 1500d07..ef96214 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -48,7 +48,7 @@ require("lazy").setup({ { "junegunn/goyo.vim", ft = { 'markdown', 'markdown.pandoc', 'tex', 'c' } }, { "junegunn/limelight.vim", ft = { 'markdown', 'markdown.pandoc', 'tex', 'c' } }, { "vim-pandoc/vim-pandoc-syntax", ft = { 'markdown', 'markdown.pandoc' } }, - { "lervag/vimtex", ft = { 'tex' } }, + { "lervag/vimtex", ft = { 'tex' }, lazy = false }, -- Git intigration { "tpope/vim-fugitive", }, |