diff options
author | zachir <zachir@librem.one> | 2024-02-08 21:52:42 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2024-02-08 21:52:42 -0600 |
commit | a3dcf5be3f93354f16511d63b5b9b2e0c57e1a08 (patch) | |
tree | 5bec2802a03062731ed91c3346d4237ec1d77e6f /nvim | |
parent | 354e0c60bd57c70c7a5c942f472b71c6eb21334a (diff) |
nvim: enable live preview for .tex
This re-enables the live preview plugin for .tex files.
Diffstat (limited to 'nvim')
-rw-r--r-- | nvim/init.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/init.vim b/nvim/init.vim index 211452e..cac706f 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -188,7 +188,7 @@ autocmd BufWinEnter * if getcmdwintype() == '' | silent NERDTreeMirror | endif " custom augroup {{{ augroup custom autocmd! - " au BufEnter *.tex :LLPStartPreview + au BufEnter *.tex :LLPStartPreview au BufEnter *.md :set textwidth=80 au BufEnter *.ms :set textwidth=80 " au BufEnter *.c :colo DevC++ |