Removed gruvbox color theme
This commit is contained in:
parent
2a1e8355d9
commit
eea52ac47f
@ -81,31 +81,31 @@ mods = "Alt"
|
||||
# Default colors
|
||||
[colors.primary]
|
||||
# hard contrast background = = '#1d2021'
|
||||
background = '#282828'
|
||||
# soft contrast background = = '#32302f'
|
||||
foreground = '#ebdbb2'
|
||||
|
||||
# Normal colors
|
||||
[colors.normal]
|
||||
black = '#282828'
|
||||
red = '#cc241d'
|
||||
green = '#98971a'
|
||||
yellow = '#d79921'
|
||||
blue = '#458588'
|
||||
magenta = '#b16286'
|
||||
cyan = '#689d6a'
|
||||
white = '#a89984'
|
||||
|
||||
# Bright colors
|
||||
[colors.bright]
|
||||
black = '#928374'
|
||||
red = '#fb4934'
|
||||
green = '#b8bb26'
|
||||
yellow = '#fabd2f'
|
||||
blue = '#83a598'
|
||||
magenta = '#d3869b'
|
||||
cyan = '#8ec07c'
|
||||
white = '#ebdbb2'
|
||||
# background = '#282828'
|
||||
# # soft contrast background = = '#32302f'
|
||||
# foreground = '#ebdbb2'
|
||||
#
|
||||
# # Normal colors
|
||||
# [colors.normal]
|
||||
# black = '#282828'
|
||||
# red = '#cc241d'
|
||||
# green = '#98971a'
|
||||
# yellow = '#d79921'
|
||||
# blue = '#458588'
|
||||
# magenta = '#b16286'
|
||||
# cyan = '#689d6a'
|
||||
# white = '#a89984'
|
||||
#
|
||||
# # Bright colors
|
||||
# [colors.bright]
|
||||
# black = '#928374'
|
||||
# red = '#fb4934'
|
||||
# green = '#b8bb26'
|
||||
# yellow = '#fabd2f'
|
||||
# blue = '#83a598'
|
||||
# magenta = '#d3869b'
|
||||
# cyan = '#8ec07c'
|
||||
# white = '#ebdbb2'
|
||||
|
||||
[mouse]
|
||||
hide_when_typing = true
|
||||
@ -119,7 +119,7 @@ program = "/bin/zsh"
|
||||
[window]
|
||||
decorations = "None"
|
||||
dynamic_padding = true
|
||||
opacity = 0.8
|
||||
opacity = 0.9
|
||||
|
||||
[window.padding]
|
||||
x = 32
|
||||
|
@ -1,85 +0,0 @@
|
||||
window:
|
||||
padding:
|
||||
x: 32
|
||||
y: 32
|
||||
|
||||
dynamic_padding: true
|
||||
decorations: None
|
||||
opacity: 0.8
|
||||
|
||||
env:
|
||||
TERM: xterm-256color
|
||||
|
||||
key_bindings:
|
||||
- { key: V, mods: Alt, action: Paste } # Alt+V Paste
|
||||
- { key: C, mods: Alt, action: Copy } # Alt+C Copy
|
||||
- { key: Q, mods: Super, action: Quit } # Mod+Q Quit
|
||||
- { key: N, mods: Alt, action: ToggleFullscreen } # Alt+N Fullscreen
|
||||
- { key: Return, mods: Super, action: SpawnNewInstance } # Mod+Enter New Instance
|
||||
- { key: J, mods: Alt, action: ScrollLineDown } # Alt+J Scroll Down
|
||||
- { key: K, mods: Alt, action: ScrollLineUp } # Alt+K Scroll Up
|
||||
- { key: L, mods: Alt, action: ScrollToBottom } # Alt+L Scroll to Bottom
|
||||
- { key: H, mods: Alt, action: ScrollToBottom } # Alt+H Scroll to Bottom
|
||||
|
||||
font:
|
||||
normal:
|
||||
family: JetBrainsMono Nerd Font
|
||||
style: Normal
|
||||
bold:
|
||||
family: JetBrainsMono Nerd Font
|
||||
style: Bold
|
||||
italic:
|
||||
family: JetBrainsMono Nerd Font
|
||||
style: Italic
|
||||
|
||||
size: 12.0
|
||||
|
||||
offset:
|
||||
x: 0
|
||||
y: 0
|
||||
|
||||
draw_bold_text_with_bright_colors: true
|
||||
|
||||
bell:
|
||||
animation: EaseOutExpo
|
||||
color: '0x282828'
|
||||
duration: 1
|
||||
|
||||
mouse:
|
||||
hide_when_typing: true
|
||||
|
||||
scrolling:
|
||||
history: 1000
|
||||
auto_scroll: true
|
||||
|
||||
cursor:
|
||||
style: Beam
|
||||
unfocused_hollow: true
|
||||
|
||||
live_config_reload: true
|
||||
|
||||
shell:
|
||||
program: /bin/zsh
|
||||
|
||||
colors:
|
||||
primary:
|
||||
background: '0x282828'
|
||||
foreground: '0xd4be98'
|
||||
normal:
|
||||
black: '0x3c3836'
|
||||
red: '0xea6962'
|
||||
green: '0xa9b665'
|
||||
yellow: '0xd8a657'
|
||||
blue: '0x7daea3'
|
||||
magenta: '0xd3869b'
|
||||
cyan: '0x89b482'
|
||||
white: '0xd4be98'
|
||||
bright:
|
||||
black: '0x3c3836'
|
||||
red: '0xea6962'
|
||||
green: '0xa9b665'
|
||||
yellow: '0xd8a657'
|
||||
blue: '0x7daea3'
|
||||
magenta: '0xd3869b'
|
||||
cyan: '0x89b482'
|
||||
white: '0xd4be98'
|
@ -37,7 +37,7 @@ call plug#begin("~/.local/share/nvim/site/autoload/plugged")
|
||||
Plug 'https://github.com/alvan/vim-closetag'
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'https://github.com/github/copilot.vim'
|
||||
Plug 'https://github.com/morhetz/gruvbox'
|
||||
" Plug 'https://github.com/morhetz/gruvbox'
|
||||
call plug#end()
|
||||
|
||||
let g:vimtex_view_method = 'zathura'
|
||||
@ -46,7 +46,7 @@ let g:auto_save = 1
|
||||
let mapleader =","
|
||||
let g:airline#extensions#tabline#enabled = 1
|
||||
|
||||
color gruvbox
|
||||
" color gruvbox
|
||||
|
||||
" REMAPPING
|
||||
" jump to last known position when opening a file
|
||||
|
Loading…
x
Reference in New Issue
Block a user