Replaced feline with lualine. o7 feline, you will be missed
This commit is contained in:
43
lua/haelnorr/lazy/catppuccin.lua
Normal file
43
lua/haelnorr/lazy/catppuccin.lua
Normal file
@@ -0,0 +1,43 @@
|
||||
return {
|
||||
"catppuccin/nvim",
|
||||
config = function()
|
||||
require("catppuccin").setup({
|
||||
integrations = {
|
||||
aerial = true,
|
||||
cmp = true,
|
||||
fidget = true,
|
||||
gitsigns = true,
|
||||
harpoon = true,
|
||||
mason = true,
|
||||
lsp_trouble = true,
|
||||
native_lsp = {
|
||||
enabled = true,
|
||||
virtual_text = {
|
||||
errors = { "italic" },
|
||||
hints = { "italic" },
|
||||
warnings = { "italic" },
|
||||
information = { "italic" },
|
||||
ok = { "italic" },
|
||||
},
|
||||
underlines = {
|
||||
errors = { "underline" },
|
||||
hints = { "underline" },
|
||||
warnings = { "underline" },
|
||||
information = { "underline" },
|
||||
ok = { "underline" },
|
||||
},
|
||||
inlay_hints = {
|
||||
background = true,
|
||||
},
|
||||
},
|
||||
telescope = {
|
||||
enabled = true,
|
||||
},
|
||||
treesitter = true,
|
||||
},
|
||||
})
|
||||
vim.cmd("colorscheme catppuccin-mocha")
|
||||
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
||||
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
||||
end,
|
||||
}
|
||||
@@ -1,42 +0,0 @@
|
||||
return {
|
||||
"catppuccin/nvim",
|
||||
config = function()
|
||||
require("catppuccin").setup({
|
||||
integrations = {
|
||||
gitsigns = true,
|
||||
treesitter = true,
|
||||
harpoon = true,
|
||||
mason = true,
|
||||
cmp = true,
|
||||
native_lsp = {
|
||||
enabled = true,
|
||||
virtual_text = {
|
||||
errors = { "italic" },
|
||||
hints = { "italic" },
|
||||
warnings = { "italic" },
|
||||
information = { "italic" },
|
||||
ok = { "italic" },
|
||||
},
|
||||
underlines = {
|
||||
errors = { "underline" },
|
||||
hints = { "underline" },
|
||||
warnings = { "underline" },
|
||||
information = { "underline" },
|
||||
ok = { "underline" },
|
||||
},
|
||||
inlay_hints = {
|
||||
background = true,
|
||||
},
|
||||
},
|
||||
fidget = true,
|
||||
telescope = {
|
||||
enabled = true,
|
||||
},
|
||||
lsp_trouble = true,
|
||||
},
|
||||
})
|
||||
vim.cmd('colorscheme catppuccin-mocha')
|
||||
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
||||
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
||||
end,
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
return {
|
||||
"feline-nvim/feline.nvim",
|
||||
config = function()
|
||||
local ctp_feline = require("catppuccin.groups.integrations.feline")
|
||||
|
||||
ctp_feline.setup()
|
||||
|
||||
require("feline").setup({
|
||||
components = ctp_feline.get(),
|
||||
})
|
||||
end,
|
||||
}
|
||||
12
lua/haelnorr/lazy/fidget.lua
Normal file
12
lua/haelnorr/lazy/fidget.lua
Normal file
@@ -0,0 +1,12 @@
|
||||
return {
|
||||
"j-hui/fidget.nvim",
|
||||
config = function()
|
||||
require("fidget").setup({
|
||||
notification = {
|
||||
window = {
|
||||
winblend = 0,
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
11
lua/haelnorr/lazy/lualine.lua
Normal file
11
lua/haelnorr/lazy/lualine.lua
Normal file
@@ -0,0 +1,11 @@
|
||||
return {
|
||||
"nvim-lualine/lualine.nvim",
|
||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||
config = function()
|
||||
require("lualine").setup({
|
||||
options = {
|
||||
theme = "catppuccin",
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user