mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 16:39:42 -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 {
|
return {
|
||||||
{
|
{
|
||||||
"olimorris/onedarkpro.nvim",
|
"chriskempson/base16-vim",
|
||||||
lazy = false,
|
|
||||||
priority = 1000,
|
|
||||||
config = function()
|
config = function()
|
||||||
require("onedarkpro").setup({
|
vim.cmd("colorscheme base16-eighties")
|
||||||
colors = {
|
vim.cmd([[
|
||||||
bg = "#000000",
|
hi Normal guibg=NONE ctermbg=NONE
|
||||||
fg = "#abb2bf",
|
hi NonText guibg=NONE ctermbg=NONE
|
||||||
red = "#ef596f",
|
hi LineNr guibg=NONE ctermbg=NONE
|
||||||
orange = "#d19a66",
|
hi CursorLine guibg=NONE ctermbg=NONE
|
||||||
yellow = "#e5c07b",
|
hi CursorLineNr guibg=NONE ctermbg=NONE guifg=#FFCC66 ctermfg=Yellow cterm=bold
|
||||||
green = "#89ca78",
|
hi GitGutterChange guibg=NONE
|
||||||
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")
|
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -83,7 +67,7 @@ return {
|
||||||
build = "make install_jsregexp",
|
build = "make install_jsregexp",
|
||||||
--dependencies = { "rafamadriz/friendly-snippets" },
|
--dependencies = { "rafamadriz/friendly-snippets" },
|
||||||
},
|
},
|
||||||
--{ "rafamadriz/friendly-snippets" },
|
|
||||||
--[[
|
--[[
|
||||||
{
|
{
|
||||||
"jackMort/ChatGPT.nvim",
|
"jackMort/ChatGPT.nvim",
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
|
||||||
\| endif
|
\| endif
|
||||||
|
|
||||||
call plug#begin('~/.vim/plugged')
|
call plug#begin('~/.vim/plugged')
|
||||||
Plug 'petobens/colorish'
|
Plug 'chriskemson/base16-vim'
|
||||||
Plug 'tpope/vim-surround'
|
Plug 'tpope/vim-surround'
|
||||||
Plug 'jiangmiao/auto-pairs'
|
Plug 'jiangmiao/auto-pairs'
|
||||||
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
|
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
|
||||||
|
|
@ -28,18 +28,20 @@ call plug#end()
|
||||||
|
|
||||||
let mapleader = "\<Space>"
|
let mapleader = "\<Space>"
|
||||||
set background=dark
|
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 CursorLine ctermbg=NONE guibg=NONE
|
||||||
highlight CursorLineNr ctermfg=magenta guifg=magenta
|
highlight CursorLineNr ctermfg=Yellow guifg=#FFCC66 ctermbg=NONE guibg=NONE cterm=bold
|
||||||
highlight HighlightedyankRegion ctermfg=NONE guifg=NONE
|
highlight HighlightedyankRegion ctermfg=Black guifg=#FFFFFF ctermbg=Yellow guibg=#FFA500
|
||||||
highlight Normal ctermbg=NONE guibg=NONE
|
|
||||||
highlight NormalNC ctermbg=NONE guibg=NONE
|
highlight NormalNC ctermbg=NONE guibg=NONE
|
||||||
highlight Search ctermfg=yellow guifg=yellow
|
highlight Search ctermfg=Black guifg=#000000 ctermbg=Yellow guibg=#FFCC66
|
||||||
highlight Search ctermbg=black guibg=black
|
highlight LineNr ctermbg=NONE guibg=NONE
|
||||||
|
highlight Visual ctermbg=LightGray guibg=#E8E8E8 ctermfg=Black guifg=#000000
|
||||||
|
|
||||||
let g:highlightedyank_highlight_duration = 80
|
let g:highlightedyank_highlight_duration = 140
|
||||||
let g:lightline = { 'colorscheme': 'one', }
|
let g:lightline = { 'colorscheme': 'deus', }
|
||||||
|
|
||||||
let $FZF_DEFAULT_OPTS = '--bind=tab:up,shift-tab:down'
|
let $FZF_DEFAULT_OPTS = '--bind=tab:up,shift-tab:down'
|
||||||
let g:fzf_layout = { 'window': 'enew' }
|
let g:fzf_layout = { 'window': 'enew' }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue