Updated colorscheme added diffview
This commit is contained in:
parent
6a3410e1c3
commit
aa823e3429
|
@ -1,14 +1,49 @@
|
|||
-- return {
|
||||
-- {
|
||||
-- "catppuccin/nvim",
|
||||
-- name = "catppuccin",
|
||||
-- lazy = false,
|
||||
-- priority = 1000,
|
||||
-- -- opts = {
|
||||
-- -- flavour = 'mocha',
|
||||
-- -- },
|
||||
-- config = function()
|
||||
-- require("catppuccin").setup({
|
||||
-- flavour = "mocha",
|
||||
-- transparent_background = false,
|
||||
-- })
|
||||
-- vim.cmd.colorscheme 'catppuccin'
|
||||
-- end,
|
||||
-- },
|
||||
-- }
|
||||
|
||||
-- return {
|
||||
-- {
|
||||
-- "catppuccin/nvim",
|
||||
-- name = "catppuccin",
|
||||
-- lazy = false,
|
||||
-- priority = 1000,
|
||||
--
|
||||
-- config = function()
|
||||
-- require("catppuccin").setup({
|
||||
-- flavour = "mocha",
|
||||
-- transparent_background = true,
|
||||
-- })
|
||||
-- vim.cmd.colorscheme 'catppuccin'
|
||||
-- end,
|
||||
-- }
|
||||
-- }
|
||||
|
||||
return {
|
||||
{
|
||||
'catppuccin/nvim',
|
||||
name = 'catppuccin',
|
||||
"folke/tokyonight.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
opts = {
|
||||
flavour = 'mocha',
|
||||
},
|
||||
config = function()
|
||||
vim.cmd.colorscheme 'catppuccin'
|
||||
end,
|
||||
},
|
||||
require("tokyonight").setup({
|
||||
style = "moon",
|
||||
})
|
||||
vim.cmd[[colorscheme tokyonight]]
|
||||
end
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
{
|
||||
'sindreds/diffview.nvim',
|
||||
lazy = true,
|
||||
},
|
||||
}
|
|
@ -1,24 +1,51 @@
|
|||
-- return {
|
||||
-- {
|
||||
-- "nvim-lualine/lualine.nvim",
|
||||
-- dependencies = {
|
||||
-- 'nvim-tree/nvim-web-devicons',
|
||||
-- },
|
||||
-- config = function()
|
||||
-- require("lualine").setup({
|
||||
-- options = {
|
||||
-- theme = "catppuccin",
|
||||
-- icons_enabled = true,
|
||||
-- section_separators = '',
|
||||
-- component_separators = '',
|
||||
-- },
|
||||
-- sections = {
|
||||
-- lualine_a = {
|
||||
-- "mode",
|
||||
-- "buffers",
|
||||
-- },
|
||||
-- lualine_c = {},
|
||||
-- },
|
||||
-- })
|
||||
-- end,
|
||||
-- },
|
||||
-- }
|
||||
|
||||
return {
|
||||
{
|
||||
-- Set lualine as statusline
|
||||
'nvim-lualine/lualine.nvim',
|
||||
dependencies = {
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
},
|
||||
-- See `:help lualine.txt`
|
||||
config = function()
|
||||
require('lualine').setup {
|
||||
require("lualine").setup({
|
||||
options = {
|
||||
theme = 'dracula',
|
||||
section_separators = '',
|
||||
component_separators = '',
|
||||
icons_enabled = true,
|
||||
theme = 'auto',
|
||||
component_separators = '|',
|
||||
--section_separators = { left = '', right = '' },
|
||||
section_separators = { left = ' ', right = ' '},
|
||||
},
|
||||
sections = {
|
||||
lualine_a = {
|
||||
'mode',
|
||||
'buffers',
|
||||
"mode",
|
||||
"buffers",
|
||||
},
|
||||
lualine_c = {},
|
||||
},
|
||||
}
|
||||
end,
|
||||
})
|
||||
end
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue