Compare commits

...

2 Commits

Author SHA1 Message Date
Max Luebke
127365d142 feat: Add texlab LSP and vimtex plugin for LaTeX support 2025-02-21 19:33:23 +01:00
Max Luebke
9e1a8e2660 feat: Add vim-slime plugin with tmux target 2025-02-21 19:28:36 +01:00
2 changed files with 16 additions and 0 deletions

View File

@ -695,6 +695,7 @@ require('lazy').setup({
},
cmake = {},
julials = {},
texlab = {},
-- gopls = {},
-- pyright = {},
-- rust_analyzer = {},

View File

@ -75,4 +75,19 @@ return {
{
'lambdalisue/vim-suda',
},
{
'jpalardy/vim-slime',
init = function()
vim.g.slime_target = 'tmux'
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, e.g.
vim.g.vimtex_view_method = 'zathura'
end,
},
}