mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-18 08:39:06 +02:00
added floating terminal and snacks
This commit is contained in:
parent
1f8a7a4eda
commit
4b43e2f49e
13 changed files with 672 additions and 55 deletions
14
lua/custom/plugins/lualine.lua
Normal file
14
lua/custom/plugins/lualine.lua
Normal file
|
@ -0,0 +1,14 @@
|
|||
-- ~/.config/nvim/lua/custom/plugins/plugins.lua
|
||||
|
||||
return {
|
||||
-- Custom Lualine configuration
|
||||
{
|
||||
'nvim-lualine/lualine.nvim',
|
||||
dependencies = { 'nvim-tree/nvim-web-devicons' }, -- Ensure icons are available
|
||||
config = function()
|
||||
require 'custom.config.lualine_config' -- Path to your custom Lualine config
|
||||
end,
|
||||
event = 'VeryLazy', -- Lazy load Lualine
|
||||
priority = 1000, -- Ensure it loads before other plugins that might depend on it
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue