Skip to content

Commit

Permalink
fix: update vim and gvim rc file
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinit Kumar committed Jan 10, 2024
1 parent a7a11fd commit b96ece2
Show file tree
Hide file tree
Showing 5 changed files with 917 additions and 7 deletions.
31 changes: 31 additions & 0 deletions colors/alabaster.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
" alabaster.vim

hi clear
if exists("syntax_on")
syntax reset
endif

let g:colors_name = "alabaster"

if &background == "dark"
let g:terminal_color_0 = "#000000"
let g:terminal_color_1 = "#d2322d"
let g:terminal_color_2 = "#6abf40"
" etc for all terminal colors
endif

" Colors
let s:bg = "#0e1415"
let s:fg = "#cecece"
let s:punct_fg = "#708b8d"
let s:def_fg = "#71ade7"
" etc for all colors

" Highlight groups
hi ColorColumn ctermbg=#E2EEEE
hi Cursor ctermbg=active ctermfg=#000000
hi CursorLine ctermbg=#182325
hi DiffAdd ctermbg=#244032 ctermfg=#56d364
hi DiffDelete ctermbg=#462c32 ctermfg=#f85149
" etc for all highlight groups

Loading

0 comments on commit b96ece2

Please sign in to comment.