update
This commit is contained in:
parent
7f0e91017f
commit
c26c34795c
13
init.lua
13
init.lua
|
|
@ -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" },
|
||||||
--
|
--
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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 = '' },
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue