Skip to content

Commit 139b555

Browse files
committed
update theme
1 parent 7c099a0 commit 139b555

File tree

4 files changed

+46
-11
lines changed

4 files changed

+46
-11
lines changed

after/plugin/neo-tree.lua

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
-- Autocmd to open Neo-tree automatically on startup
2-
-- vim.api.nvim_create_autocmd("VimEnter", {
3-
-- callback = function()
4-
-- if vim.fn.isdirectory(vim.fn.getcwd()) == 1 then
5-
-- require('neo-tree.command').execute({ toggle = false, dir = vim.loop.cwd() })
6-
-- vim.cmd('wincmd p') -- Switch back to the previous buffer
7-
-- end
8-
-- end
9-
-- })
2+
vim.api.nvim_create_autocmd("VimEnter", {
3+
callback = function()
4+
if vim.fn.isdirectory(vim.fn.getcwd()) == 1 then
5+
require('neo-tree.command').execute({ toggle = false, dir = vim.loop.cwd() })
6+
vim.cmd('wincmd p') -- Switch back to the previous buffer
7+
end
8+
end
9+
})
1010

init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ require('lazy').setup({
855855
-- Load the colorscheme here.
856856
-- Like many other themes, this one has different styles, and you could load
857857
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
858-
vim.cmd.colorscheme 'tokyonight-night'
858+
-- vim.cmd.colorscheme 'tokyonight-night'
859859

860860
-- You can configure highlights by doing something like:
861861
vim.cmd.hi 'Comment gui=none'

lua/custom/plugins/colorschemes.lua

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
return {
2+
{
3+
"felipeagc/fleet-theme-nvim",
4+
lazy = false,
5+
priority = 1000,
6+
config = function ()
7+
vim.cmd.colorscheme 'fleet'
8+
end,
9+
enabled = false,
10+
},
11+
212
{
313
"tjdevries/colorbuddy.nvim",
414
lazy = false,
@@ -84,7 +94,7 @@ return {
8494
priority = 1000,
8595
config = function()
8696
require('rose-pine').setup {
87-
97+
8898
}
8999

90100
vim.cmd.colorscheme 'rose-pine-moon'
@@ -133,4 +143,29 @@ return {
133143
end,
134144
enabled = false,
135145
},
146+
147+
{
148+
'vague2k/vague.nvim',
149+
lazy = false,
150+
priority = 1000,
151+
config = function()
152+
vim.cmd.colorscheme 'vague'
153+
end,
154+
enabled = false,
155+
},
156+
157+
{
158+
"blazkowolf/gruber-darker.nvim",
159+
opts = {
160+
bold = false,
161+
italic = {
162+
strings = false,
163+
},
164+
},
165+
lazy = false,
166+
priority = 1000,
167+
config = function()
168+
vim.cmd.colorscheme 'gruber-darker'
169+
end,
170+
}
136171
}

lua/kickstart/plugins/neo-tree.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ return {
1616
opts = {
1717
filesystem = {
1818
window = {
19-
-- position = "right",
19+
position = "right",
2020
mappings = {
2121
['\\'] = 'close_window',
2222
},

0 commit comments

Comments
 (0)