From d5fb8f7e4ce4a60e63c29cf84c72f13c7e7dfa6e Mon Sep 17 00:00:00 2001 From: zsmith Date: Tue, 23 Dec 2025 10:01:30 -0600 Subject: Commend out pylsp setup Something updated and this line in the config is broken now. --- nvim/lua/plugins.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'nvim') diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index 3684b89..0984c21 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -35,11 +35,12 @@ require("lazy").setup({ }, { "neovim/nvim-lspconfig", - config = function() + --[[config = function() local lspconfig = require("lspconfig") lspconfig.pylsp.setup({}) end, + --]] }, "tanvirtin/monokai.nvim", "lervag/vimtex", -- cgit v1.2.3 From 715ff2bd165d85a3b547eab1ca2e51c87c7036eb Mon Sep 17 00:00:00 2001 From: ZachIR Date: Mon, 29 Dec 2025 20:23:59 -0600 Subject: Set zathura for vim latex preview --- nvim/lua/options.lua | 3 +++ 1 file changed, 3 insertions(+) (limited to 'nvim') diff --git a/nvim/lua/options.lua b/nvim/lua/options.lua index ae802be..86dd977 100644 --- a/nvim/lua/options.lua +++ b/nvim/lua/options.lua @@ -84,3 +84,6 @@ vim.g.indent_guides_enable_on_vim_startup = 0 -- vim-signify vim.opt.updatetime = 100 + +-- vim-latex-live-preview +vim.g.livepreview_previewer = 'zathura' -- cgit v1.2.3