mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
Colorscheme changed to base16-eighties
This commit is contained in:
parent
626596499c
commit
7e63e29f2b
2 changed files with 22 additions and 36 deletions
|
|
@ -1,32 +1,16 @@
|
|||
return {
|
||||
{
|
||||
"olimorris/onedarkpro.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
"chriskempson/base16-vim",
|
||||
config = function()
|
||||
require("onedarkpro").setup({
|
||||
colors = {
|
||||
bg = "#000000",
|
||||
fg = "#abb2bf",
|
||||
red = "#ef596f",
|
||||
orange = "#d19a66",
|
||||
yellow = "#e5c07b",
|
||||
green = "#89ca78",
|
||||
cyan = "#2bbac5",
|
||||
blue = "#61afef",
|
||||
purple = "#d55fde",
|
||||
white = "#abb2bf",
|
||||
black = "#000000",
|
||||
gray = "#434852",
|
||||
highlight = "#e2be7d",
|
||||
comment = "#7f848e",
|
||||
none = "NONE",
|
||||
},
|
||||
options = {
|
||||
transparency = true,
|
||||
},
|
||||
})
|
||||
vim.cmd("colorscheme onedark")
|
||||
vim.cmd("colorscheme base16-eighties")
|
||||
vim.cmd([[
|
||||
hi Normal guibg=NONE ctermbg=NONE
|
||||
hi NonText guibg=NONE ctermbg=NONE
|
||||
hi LineNr guibg=NONE ctermbg=NONE
|
||||
hi CursorLine guibg=NONE ctermbg=NONE
|
||||
hi CursorLineNr guibg=NONE ctermbg=NONE guifg=#FFCC66 ctermfg=Yellow cterm=bold
|
||||
hi GitGutterChange guibg=NONE
|
||||
]])
|
||||
end,
|
||||
},
|
||||
|
||||
|
|
@ -83,7 +67,7 @@ return {
|
|||
build = "make install_jsregexp",
|
||||
--dependencies = { "rafamadriz/friendly-snippets" },
|
||||
},
|
||||
--{ "rafamadriz/friendly-snippets" },
|
||||
|
||||
--[[
|
||||
{
|
||||
"jackMort/ChatGPT.nvim",
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
|
|||
\| endif
|
||||
|
||||
call plug#begin('~/.vim/plugged')
|
||||
Plug 'petobens/colorish'
|
||||
Plug 'chriskemson/base16-vim'
|
||||
Plug 'tpope/vim-surround'
|
||||
Plug 'jiangmiao/auto-pairs'
|
||||
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
|
||||
|
|
@ -28,18 +28,20 @@ call plug#end()
|
|||
|
||||
let mapleader = "\<Space>"
|
||||
set background=dark
|
||||
colorscheme onedarkish
|
||||
colorscheme base16-eighties
|
||||
|
||||
highlight Normal ctermbg=NONE guibg=NONE
|
||||
highlight NonText ctermbg=NONE guibg=NONE
|
||||
highlight CursorLine ctermbg=NONE guibg=NONE
|
||||
highlight CursorLineNr ctermfg=magenta guifg=magenta
|
||||
highlight HighlightedyankRegion ctermfg=NONE guifg=NONE
|
||||
highlight Normal ctermbg=NONE guibg=NONE
|
||||
highlight CursorLineNr ctermfg=Yellow guifg=#FFCC66 ctermbg=NONE guibg=NONE cterm=bold
|
||||
highlight HighlightedyankRegion ctermfg=Black guifg=#FFFFFF ctermbg=Yellow guibg=#FFA500
|
||||
highlight NormalNC ctermbg=NONE guibg=NONE
|
||||
highlight Search ctermfg=yellow guifg=yellow
|
||||
highlight Search ctermbg=black guibg=black
|
||||
highlight Search ctermfg=Black guifg=#000000 ctermbg=Yellow guibg=#FFCC66
|
||||
highlight LineNr ctermbg=NONE guibg=NONE
|
||||
highlight Visual ctermbg=LightGray guibg=#E8E8E8 ctermfg=Black guifg=#000000
|
||||
|
||||
let g:highlightedyank_highlight_duration = 80
|
||||
let g:lightline = { 'colorscheme': 'one', }
|
||||
let g:highlightedyank_highlight_duration = 140
|
||||
let g:lightline = { 'colorscheme': 'deus', }
|
||||
|
||||
let $FZF_DEFAULT_OPTS = '--bind=tab:up,shift-tab:down'
|
||||
let g:fzf_layout = { 'window': 'enew' }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue