This commit is contained in:
Philipp Hochkamp 2023-03-10 17:53:06 +01:00
parent 40b7cedf19
commit 2fd8760eda
4 changed files with 30 additions and 8 deletions

View file

@ -1,3 +1,11 @@
vim.cmd [[
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
augroup vimtex_mac
autocmd!
autocmd FileType tex call SetServerName()
augroup END
function! SetServerName()
call system('echo ' . v:servername . ' > /tmp/curvimserver')
endfunction
]]