This commit is contained in:
tavo 2025-08-27 18:35:55 -06:00
parent 81c21f3b72
commit 1b62455378
2 changed files with 16 additions and 9 deletions

View file

@ -31,11 +31,11 @@ endfunction
let s:plug_url = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' let s:plug_url = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
let s:plug_path = g:customrtp . '/autoload/plug.vim' let s:plug_path = g:customrtp . '/autoload/plug.vim'
if !filereadable(s:plug_path) if !filereadable(s:plug_path)
call s:Curl(s:plug_url, s:plug_path) call s:Curl(s:plug_url, s:plug_path)
augroup PlugBootstrap augroup PlugBootstrap
autocmd! autocmd!
autocmd VimEnter * ++once PlugInstall --sync | execute 'source ' . fnameescape(g:customrtp . '/vimrc') autocmd VimEnter * ++once PlugInstall --sync | execute 'source ' . fnameescape(g:customrtp . '/vimrc')
augroup END augroup END
endif endif
" Plugins " Plugins
@ -43,19 +43,20 @@ call plug#begin(g:customrtp . '/plugged')
Plug 'tpope/vim-sensible' Plug 'tpope/vim-sensible'
Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes' Plug 'vim-airline/vim-airline-themes'
Plug 'sainnhe/gruvbox-material' Plug 'sainnhe/everforest'
" Plug 'https://github.com/preservim/nerdtree'
call plug#end() call plug#end()
" Appearance " Appearance
colorscheme gruvbox-material colorscheme everforest
let g:everforest_background = "hard"
set listchars=tab:\|\ ,trail:~,extends:>,precedes:<,nbsp:+ set listchars=tab:\|\ ,trail:~,extends:>,precedes:<,nbsp:+
set background=dark set background=dark
set colorcolumn=81
set termguicolors set termguicolors
set cursorline set cursorline
set number set number
set nowrap set nowrap
set laststatus=2
set noshowmode
" netrw " netrw
let g:netrw_banner=0 let g:netrw_banner=0

View file

@ -0,0 +1,6 @@
return {
"chomosuke/typst-preview.nvim",
lazy = false, -- or ft = 'typst'
version = "1.*",
opts = {}, -- lazy.nvim will implicitly calls `setup {}`
}