From f192e53e7a0fbcd19dd685d4741c21ed01c6e7f1 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Mon, 1 Jan 2024 19:48:36 -0500 Subject: [PATCH] remove latex shortcuts replace with typst perhaps? --- modules/common/neovim/config/misc.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/common/neovim/config/misc.nix b/modules/common/neovim/config/misc.nix index 084e379..84b40dc 100644 --- a/modules/common/neovim/config/misc.nix +++ b/modules/common/neovim/config/misc.nix @@ -69,10 +69,6 @@ " Remember last position when reopening file au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal! g`\"" | endif - " LaTeX options - au FileType tex inoremap ;bf \textbf{}i - au BufWritePost *.tex silent! execute "!pdflatex -output-directory=%:p:h % >/dev/null 2>&1" | redraw! - " Flash highlight when yanking au TextYankPost * silent! lua vim.highlight.on_yank { timeout = 250 } '';