1
0
Fork 0

ghostty, helix, nvim, vim: revert to dark themes

This commit is contained in:
Von Random 2026-03-23 16:28:02 +02:00
parent 4ae59147f7
commit 90c2d53717
3 changed files with 9 additions and 10 deletions

View file

@ -1,4 +1,4 @@
theme = Dawnfox theme = Gruvbox Dark
font-family = Maple Mono NL NF font-family = Maple Mono NL NF
{{- if eq .chezmoi.os "darwin" }} {{- if eq .chezmoi.os "darwin" }}
font-size = 15 font-size = 15

View file

@ -1,4 +1,4 @@
theme = "rose_pine_dawn" theme = "gruvbox"
[editor.cursor-shape] [editor.cursor-shape]
normal = "block" normal = "block"

View file

@ -7,9 +7,8 @@ vim.opt.rtp:prepend(lazypath)
--[[ plugins list ]] --[[ plugins list ]]
require('lazy').setup { require('lazy').setup {
-- {'ellisonleao/gruvbox.nvim', priority = 1000, config = true}, {'ellisonleao/gruvbox.nvim', priority = 1000, config = true},
{'w0rp/ale', cmd = 'ALEEnable', ft = {'bash', 'go', 'lua', 'python', 'sh', 'zsh'}}, {'w0rp/ale', cmd = 'ALEEnable', ft = {'bash', 'go', 'lua', 'python', 'sh', 'zsh'}},
'EdenEast/nightfox.nvim',
'smoka7/hop.nvim', 'smoka7/hop.nvim',
'kdheepak/lazygit.nvim', 'kdheepak/lazygit.nvim',
'nvim-telescope/telescope.nvim', 'nvim-telescope/telescope.nvim',
@ -25,10 +24,10 @@ require('lazy').setup {
--[[ plugin configs and maps ]] --[[ plugin configs and maps ]]
require('hop').setup() require('hop').setup()
require('gitsigns').setup() require('gitsigns').setup()
-- require('gruvbox').setup { require('gruvbox').setup {
-- italic = {strings = false}, italic = {strings = false},
-- terminal_colors = true terminal_colors = true
-- } }
require('nvim-treesitter.configs').setup { require('nvim-treesitter.configs').setup {
highlight = { highlight = {
enable = true enable = true
@ -51,6 +50,6 @@ map('n', '<Leader>,', '<cmd>Telescope buffers<CR>')
--[[ theme ]] --[[ theme ]]
vim.o.termguicolors = true vim.o.termguicolors = true
vim.o.bg = 'light' vim.o.bg = 'dark'
vim.cmd [[colorscheme dawnfox]] vim.cmd [[colorscheme gruvbox]]