added bamboo color scheme
This commit is contained in:
parent
4cdf787491
commit
34b7cd6167
@ -5,6 +5,7 @@
|
|||||||
"advanced-git-search.nvim": { "branch": "main", "commit": "5637d80861e253a8621450eb58621009e1307deb" },
|
"advanced-git-search.nvim": { "branch": "main", "commit": "5637d80861e253a8621450eb58621009e1307deb" },
|
||||||
"aerial.nvim": { "branch": "master", "commit": "ae33427e1aa54bfdd164313716cdc10e7d7b927a" },
|
"aerial.nvim": { "branch": "master", "commit": "ae33427e1aa54bfdd164313716cdc10e7d7b927a" },
|
||||||
"astrotheme": { "branch": "main", "commit": "e78a109d195a89930d7c168157e5c32c2b0a1c8d" },
|
"astrotheme": { "branch": "main", "commit": "e78a109d195a89930d7c168157e5c32c2b0a1c8d" },
|
||||||
|
"bamboo.nvim": { "branch": "master", "commit": "318e032ad1d9605a2af673d75c65797dbf95bc14" },
|
||||||
"clangd_extensions.nvim": { "branch": "main", "commit": "bafed83f79b5779f5b43e8e015e13ca99dcd8b3a" },
|
"clangd_extensions.nvim": { "branch": "main", "commit": "bafed83f79b5779f5b43e8e015e13ca99dcd8b3a" },
|
||||||
"cmake-tools.nvim": { "branch": "master", "commit": "714fcd7ce88d320507d3a4a1da5d23bf457bcf7b" },
|
"cmake-tools.nvim": { "branch": "master", "commit": "714fcd7ce88d320507d3a4a1da5d23bf457bcf7b" },
|
||||||
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
|
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
|
||||||
|
@ -88,4 +88,4 @@ opt.foldexpr = 'nvim_treesitter#foldexpr()'
|
|||||||
-- Window border for floating windows
|
-- Window border for floating windows
|
||||||
require('lspconfig.ui.windows').default_options.border = 'rounded'
|
require('lspconfig.ui.windows').default_options.border = 'rounded'
|
||||||
|
|
||||||
vim.cmd('colorscheme catppuccin')
|
vim.cmd('colorscheme bamboo')
|
||||||
|
15
lua/plugins/bamboo.lua
Normal file
15
lua/plugins/bamboo.lua
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
return {
|
||||||
|
'ribru17/bamboo.nvim',
|
||||||
|
lazy = true,
|
||||||
|
priority = 1000,
|
||||||
|
config = function()
|
||||||
|
require('bamboo').setup {
|
||||||
|
dim_inactive = false, -- Dim inactive windows/buffers
|
||||||
|
highlights = {
|
||||||
|
['@lsp.mod.readonly'] = { fmt = 'bold' },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
require('bamboo').load()
|
||||||
|
end,
|
||||||
|
enabled = true
|
||||||
|
}
|
@ -4,7 +4,7 @@ return {
|
|||||||
config = function()
|
config = function()
|
||||||
require('lualine').setup {
|
require('lualine').setup {
|
||||||
options = {
|
options = {
|
||||||
theme = 'catppuccin',
|
theme = 'bamboo',
|
||||||
disabled_filetypes = {
|
disabled_filetypes = {
|
||||||
statusline = {},
|
statusline = {},
|
||||||
winbar = { 'dap-repl', 'dapui_console' },
|
winbar = { 'dap-repl', 'dapui_console' },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user