Use monokai colorscheme in vim.

This commit is contained in:
Gabriel Ebner 2024-09-07 19:46:17 -07:00
parent b86b3d4fac
commit 5d524057ce
1 changed files with 14 additions and 10 deletions

24
vimrc
View File

@ -84,8 +84,9 @@ Plug 'c-cube/vim-tptp'
Plug 'sirtaj/vim-openscad' Plug 'sirtaj/vim-openscad'
Plug 'nanotech/jellybeans.vim' " Plug 'nanotech/jellybeans.vim'
Plug 'sonph/onehalf', { 'rtp': 'vim' } " Plug 'sonph/onehalf', { 'rtp': 'vim' }
Plug 'polirritmico/monokai-nightasty.nvim'
" Plug '~/dgapt', { 'rtp': 'vim' } " Plug '~/dgapt', { 'rtp': 'vim' }
@ -145,7 +146,7 @@ set tw=0 expandtab ts=8 sts=2 sw=2 sm ai si
set noml mls=5 " scan 5 lines for modelines set noml mls=5 " scan 5 lines for modelines
syn on " enable syntax highlighting syn on " enable syntax highlighting
set hls " highlight search set hls " highlight search
set bg=dark " dark background " set bg=dark " dark background
se foldlevel=99 se foldlevel=99
set vb " turn on the "visual bell" - which is much quieter than the "audio blink" set vb " turn on the "visual bell" - which is much quieter than the "audio blink"
set nobackup set nobackup
@ -169,12 +170,13 @@ let g:jellybeans_overrides = {
\ 'SignColumn': { 'guibg': '191919' }, \ 'SignColumn': { 'guibg': '191919' },
\} \}
if exists('g:started_by_firenvim') " if exists('g:started_by_firenvim')
set bg=light " set bg=light
colors onehalflight " colors onehalflight
else " else
colors jellybeans " colors jellybeans
endif " endif
colors monokai-nightasty
au syntax java setl ts=4 sts=4 sw=4 au syntax java setl ts=4 sts=4 sw=4
@ -317,10 +319,12 @@ local lspconfig = require('lspconfig')
lspconfig.lua_ls.setup(luadev) lspconfig.lua_ls.setup(luadev)
lspconfig.ccls.setup{} lspconfig.ccls.setup{}
lspconfig.pylsp.setup{} lspconfig.pylsp.setup{}
lspconfig.tsserver.setup{} lspconfig.ts_ls.setup{}
lspconfig.texlab.setup{} lspconfig.texlab.setup{}
lspconfig.terraformls.setup{} lspconfig.terraformls.setup{}
-- require'monokai-nightasty'.load{ }
--vim.lsp.set_log_level("debug") --vim.lsp.set_log_level("debug")
require('rust-tools').setup{} require('rust-tools').setup{}