This commit is contained in:
2024-06-02 17:27:16 +08:00
parent 3b65459b30
commit 5f75d60ced
2 changed files with 28 additions and 4 deletions

View File

@@ -6,6 +6,12 @@ vim.g.loaded_netrwPlugin = 1
local vim = vim
local Plug = vim.fn['plug#']
vim.cmd('filetype plugin indent on')
vim.cmd('syntax enable')
vim.cmd('set nu')
vim.call('plug#begin')
-- file tree
@@ -39,8 +45,9 @@ require("nvim-tree").setup({
})
-- config for vimtex
vim.cmd('filetype plugin indent on')
vim.cmd('syntax enable')
vim.cmd('set nu')
require("vimtex").setup({
viewer={
method = 'zathura',
},
})