kickstart.nvim/lua/custom/plugins/themes.lua

89 lines
1.9 KiB
Lua
Executable File

return {
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {
style = "moon",
},
},
-- {
-- "catppuccin/nvim",
-- lazy = false,
-- priority = 1000,
-- },
-- {
-- Set lualine as statusline
-- 'nvim-lualine/lualine.nvim',
-- See `:help lualine.txt`
-- opts = {
-- options = {
-- icons_enabled = true,
-- theme = 'catppuccin-mocha',
-- theme = 'tokyonight',
-- section_separators = { left = '', right = '' },
-- component_separators = { left = '', right = '' }
-- },
-- },
-- },
{
"lukas-reineke/indent-blankline.nvim",
opts = {
indent = {
char = "",
tab_char = "",
},
scope = { enabled = false },
exclude = {
filetypes = {
"help",
"alpha",
"dashboard",
"neo-tree",
"Trouble",
"trouble",
"lazy",
"mason",
"notify",
"toggleterm",
"lazyterm",
},
},
},
main = "ibl",
},
-- Active indent guide and indent text objects. When you're browsing
-- code, this highlights the current level of indentation, and animates
-- the highlighting.
{
"echasnovski/mini.indentscope",
version = false, -- wait till new 0.7.0 release to put it back on semver
opts = {
-- symbol = "▏",
symbol = "",
options = { try_as_border = true },
},
init = function()
vim.api.nvim_create_autocmd("FileType", {
pattern = {
"help",
"alpha",
"dashboard",
"neo-tree",
"Trouble",
"trouble",
"lazy",
"mason",
"notify",
"toggleterm",
"lazyterm",
},
callback = function()
vim.b.miniindentscope_disable = true
end,
})
end,
},
}