typst
This commit is contained in:
parent
81c21f3b72
commit
1b62455378
2 changed files with 16 additions and 9 deletions
|
|
@ -43,19 +43,20 @@ call plug#begin(g:customrtp . '/plugged')
|
|||
Plug 'tpope/vim-sensible'
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'vim-airline/vim-airline-themes'
|
||||
Plug 'sainnhe/gruvbox-material'
|
||||
" Plug 'https://github.com/preservim/nerdtree'
|
||||
Plug 'sainnhe/everforest'
|
||||
call plug#end()
|
||||
|
||||
" Appearance
|
||||
colorscheme gruvbox-material
|
||||
colorscheme everforest
|
||||
let g:everforest_background = "hard"
|
||||
set listchars=tab:\|\ ,trail:~,extends:>,precedes:<,nbsp:+
|
||||
set background=dark
|
||||
set colorcolumn=81
|
||||
set termguicolors
|
||||
set cursorline
|
||||
set number
|
||||
set nowrap
|
||||
set laststatus=2
|
||||
set noshowmode
|
||||
|
||||
" netrw
|
||||
let g:netrw_banner=0
|
||||
|
|
|
|||
6
nvim/lua/plugins/typst.lua
Normal file
6
nvim/lua/plugins/typst.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
"chomosuke/typst-preview.nvim",
|
||||
lazy = false, -- or ft = 'typst'
|
||||
version = "1.*",
|
||||
opts = {}, -- lazy.nvim will implicitly calls `setup {}`
|
||||
}
|
||||
Loading…
Reference in a new issue