mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-17 16:21:12 +02:00
themes and lualine
This commit is contained in:
parent
fd7c1e5092
commit
9f9d663f0b
8 changed files with 39 additions and 21 deletions
|
@ -38,13 +38,13 @@ local config = {
|
|||
-- Disable sections and component separators
|
||||
component_separators = '',
|
||||
section_separators = '',
|
||||
theme = {
|
||||
-- We are going to use lualine_c and lualine_x as left and
|
||||
-- right sections. Both are highlighted by the c theme.
|
||||
-- So we are just setting default looks of statusline
|
||||
normal = { c = { fg = colors.fg, bg = colors.bg } },
|
||||
inactive = { c = { fg = colors.fg, bg = colors.bg } },
|
||||
},
|
||||
-- theme = {
|
||||
-- -- We are going to use lualine_c and lualine_x as left and
|
||||
-- -- right sections. Both are highlighted by the c theme.
|
||||
-- -- So we are just setting default looks of statusline
|
||||
-- normal = { c = { fg = colors.fg, bg = colors.bg } },
|
||||
-- inactive = { c = { fg = colors.fg, bg = colors.bg } },
|
||||
-- },
|
||||
},
|
||||
sections = {
|
||||
-- these are to remove the defaults
|
||||
|
@ -130,11 +130,11 @@ ins_left {
|
|||
cond = conditions.buffer_not_empty,
|
||||
}
|
||||
|
||||
-- ins_left {
|
||||
-- 'filename',
|
||||
-- cond = conditions.buffer_not_empty,
|
||||
-- color = { fg = colors.magenta, gui = 'bold' },
|
||||
-- }
|
||||
ins_left {
|
||||
'filename',
|
||||
cond = conditions.buffer_not_empty,
|
||||
color = { fg = colors.magenta, gui = 'bold' },
|
||||
}
|
||||
|
||||
ins_left { 'location', show_filename_only = false }
|
||||
ins_left { 'progress', color = { fg = colors.fg, gui = 'bold' } }
|
||||
|
@ -197,7 +197,7 @@ ins_right {
|
|||
ins_right {
|
||||
'branch',
|
||||
icon = '',
|
||||
color = { fg = colors.violet, gui = 'bold' },
|
||||
color = { fg = colors.red, gui = 'bold' },
|
||||
}
|
||||
|
||||
ins_right {
|
||||
|
|
1
lua/custom/plugins/chocolatier.lua
Normal file
1
lua/custom/plugins/chocolatier.lua
Normal file
|
@ -0,0 +1 @@
|
|||
return { 'qaptoR-nvim/chocolatier.nvim' }
|
|
@ -2,4 +2,14 @@
|
|||
-- I promise not to create any merge conflicts in this directory :)
|
||||
--
|
||||
-- See the kickstart.nvim README for more information
|
||||
return {}
|
||||
return {
|
||||
{
|
||||
'folke/noice.nvim',
|
||||
event = 'VeryLazy',
|
||||
opts = {},
|
||||
dependencies = {
|
||||
'MunifTanjim/nui.nvim',
|
||||
'rcarriga/nvim-notify'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
1
lua/custom/plugins/lush.lua
Normal file
1
lua/custom/plugins/lush.lua
Normal file
|
@ -0,0 +1 @@
|
|||
return { 'rktjmp/lush.nvim' }
|
1
lua/custom/plugins/rakis.lua
Normal file
1
lua/custom/plugins/rakis.lua
Normal file
|
@ -0,0 +1 @@
|
|||
return { 'sample-usr/rakis.nvim' }
|
4
lua/custom/plugins/sakura.lua
Normal file
4
lua/custom/plugins/sakura.lua
Normal file
|
@ -0,0 +1,4 @@
|
|||
return { 'anAcc22/sakura.nvim', config = function ()
|
||||
vim.opt.background = 'dark'
|
||||
|
||||
end }
|
2
lua/custom/plugins/vague.lua
Normal file
2
lua/custom/plugins/vague.lua
Normal file
|
@ -0,0 +1,2 @@
|
|||
return { 'vague2k/vague.nvim' }
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue