This commit is contained in:
Delvin Yamoah 2026-04-24 09:33:28 +00:00
parent 7f0e91017f
commit c26c34795c
3 changed files with 11 additions and 8 deletions

View File

@ -5,12 +5,12 @@ vim.g.maplocalleader = ' '
vim.opt.guicursor = '' vim.opt.guicursor = ''
-- my personal color scheme setup -- my personal color scheme setup
vim.cmd 'colorscheme quiet' -- vim.cmd 'colorscheme quiet'
vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' }) -- vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' })
vim.o.background = 'dark' -- vim.o.background = 'dark'
vim.api.nvim_set_hl(0, 'SignColumn', { bg = 'none' }) -- vim.api.nvim_set_hl(0, 'SignColumn', { bg = 'none' })
vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none', fg = '#ffffff' }) -- vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none', fg = '#ffffff' })
vim.api.nvim_set_hl(0, 'FloatBorder', { fg = 'none', bg = '#1e1e1e' }) -- vim.api.nvim_set_hl(0, 'FloatBorder', { fg = 'none', bg = '#1e1e1e' })
-- vim.api.nvim_set_hl(0, 'Pmenu', { bg = '#1e1e1e', fg = '#ffffff' }) -- vim.api.nvim_set_hl(0, 'Pmenu', { bg = '#1e1e1e', fg = '#ffffff' })
-- vim.api.nvim_set_hl(0, 'PmenuSel', { bg = '#3d59a1', fg = '#ffffff' }) -- vim.api.nvim_set_hl(0, 'PmenuSel', { bg = '#3d59a1', fg = '#ffffff' })
-- --
@ -657,6 +657,7 @@ require('lazy').setup({
end, end,
formatters_by_ft = { formatters_by_ft = {
lua = { 'stylua' }, lua = { 'stylua' },
typerscript = { 'biome' },
-- Conform can also run multiple formatters sequentially -- Conform can also run multiple formatters sequentially
-- python = { "isort", "black" }, -- python = { "isort", "black" },
-- --

View File

@ -6,8 +6,9 @@ return {
config = function() config = function()
require('black-metal').setup { require('black-metal').setup {
-- optional configuration here -- optional configuration here
transparent = false,
} }
-- require('black-metal').load() require('black-metal').load()
-- vim.cmd 'colorscheme burzum' vim.cmd 'colorscheme taake'
end, end,
} }

View File

@ -4,6 +4,7 @@ return {
config = function() config = function()
require('lualine').setup { require('lualine').setup {
options = { options = {
-- theme = 'everforest',
icons_enabled = false, icons_enabled = false,
-- component_separators = { left = '|', right = '|'}, -- component_separators = { left = '|', right = '|'},
-- section_separators = { left = '', right = '' }, -- section_separators = { left = '', right = '' },