update
This commit is contained in:
parent
3b65459b30
commit
5f75d60ced
17
README.md
17
README.md
|
@ -8,3 +8,20 @@ Hack Nerd Font installation
|
|||
brew install font-hack-nerd-font
|
||||
```
|
||||
|
||||
|
||||
## Configure python3 for neovim
|
||||
|
||||
```
|
||||
pip install pynvim
|
||||
```
|
||||
|
||||
validate the python3 support with the command:
|
||||
|
||||
```
|
||||
:echo has("python3") # expected return value is 1
|
||||
```
|
||||
|
||||
|
||||
## Configuration for latex for neovim
|
||||
|
||||
(A guide to supercharged mathematical typesetting)[https://ejmastnak.com/tutorials/vim-latex/intro/]
|
||||
|
|
|
@ -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',
|
||||
},
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user