Skip to content

Commit

Permalink
Gruvbox -> Moonfly
Browse files Browse the repository at this point in the history
Messing around with moonfly because my beloved gruvbox doesn't have
treesitter syntax yet.

References:
- https://github.com/bluz71/vim-moonfly-colors
- gruvbox-community/gruvbox#154
  • Loading branch information
evantravers committed Feb 4, 2021
1 parent b7d6e24 commit 5649afd
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 192 deletions.
1 change: 0 additions & 1 deletion fish/.config/fish/config.fish
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
theme
25 changes: 0 additions & 25 deletions fish/.config/fish/functions/_gruvbox_dark.fish

This file was deleted.

25 changes: 0 additions & 25 deletions fish/.config/fish/functions/_gruvbox_light.fish

This file was deleted.

22 changes: 0 additions & 22 deletions fish/.config/fish/functions/theme.fish

This file was deleted.

2 changes: 1 addition & 1 deletion kitty/.config/kitty/kitty.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# vim:fileencoding=utf-8:ft=conf

# Theme
include themes/gruvbox.conf
include themes/moonfly.conf
tab_bar_style powerline

# OS specific changes
Expand Down
53 changes: 0 additions & 53 deletions kitty/.config/kitty/themes/gruvbox-light.conf

This file was deleted.

53 changes: 0 additions & 53 deletions kitty/.config/kitty/themes/gruvbox.conf

This file was deleted.

33 changes: 33 additions & 0 deletions kitty/.config/kitty/themes/moonfly.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# vim:fileencoding=utf-8:ft=conf

# https://github.com/morhetz/gruvbox

font_family jetbrains mono
italic_font jetbrains mono italic
bold_font jetbrains mono bold
bold_italic_font jetbrains mono bold italic

# Font size (in pts)
font_size 14.0

background #080808
foreground #b2b2b2
cursor #9e9e9e
color0 #373c40
color1 #ff5454
color2 #8cc85f
color3 #e3c78a
color4 #80a0ff
color5 #d183e8
color6 #79dac8
color7 #a1aab8
color8 #7c8f8f
color9 #ff5189
color10 #36c692
color11 #bfbf97
color12 #78c2ff
color13 #ae81ff
color14 #85dc85
color15 #e2637f
selection_background #b2ceee
selection_foreground #080808
15 changes: 3 additions & 12 deletions nvim/.config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,14 @@ paq {'savq/paq-nvim', opt=true}


-- THEME
-- gruvbox colors
paq 'gruvbox-community/gruvbox'
vim.g.gruvbox_italic = 1
vim.g.gruvbox_improved_strings = 1
vim.g.gruvbox_improved_warnings = 1
vim.g.gruvbox_contrast_light = 'hard'
vim.g.gruvbox_contrast_dark = 'medium'
vim.cmd [[colorscheme gruvbox]]
paq 'bluz71/vim-moonfly-colors'
vim.cmd [[colorscheme moonfly]]
-- statusline
paq 'itchyny/lightline.vim'
vim.g.lightline = {
colorscheme = 'gruvbox'
colorscheme = 'moonfly'
}
vim.o.showmode = false
if os.getenv('termTheme') == 'light' then
vim.o.background = 'light'
end


-- UI
Expand Down

0 comments on commit 5649afd

Please sign in to comment.