Compare commits

...

2 Commits

Author SHA1 Message Date
iGor milhit 2161fcd901
plugins: set neotree width
Co-Authored-by: iGor milhit <igor@milhit.ch>
2024-01-30 14:51:05 +01:00
iGor milhit 36a5e806a4
mason: remove tectonic configuration for build
Co-Authored-by: iGor milhit <igor@milhit.ch>
2024-01-30 14:50:12 +01:00
2 changed files with 16 additions and 14 deletions

View File

@ -471,19 +471,17 @@ local servers = {
}, },
texlab = { texlab = {
settings = { -- build = {
build = { -- executable = "tectonic",
executable = "tectonic", -- args = {
args = { -- "-X",
"-X", -- "compile",
"compile", -- "%f",
"%f", -- "--synctex",
"--syntex", -- "--keep-logs",
"--keep-logs", -- "--keep-intermediates"
"--keep-intermediates" -- }
} -- }
}
}
}, },
-- Require vscode-langservers-extracted -- Require vscode-langservers-extracted

View File

@ -13,6 +13,10 @@ return {
"MunifTanjim/nui.nvim", "MunifTanjim/nui.nvim",
}, },
config = function () config = function ()
require('neo-tree').setup {} require('neo-tree').setup {
window = {
width = 36
}
}
end, end,
} }