update theme
This commit is contained in:
parent
7c099a0d68
commit
139b555bd0
|
@ -1,10 +1,10 @@
|
|||
-- Autocmd to open Neo-tree automatically on startup
|
||||
-- vim.api.nvim_create_autocmd("VimEnter", {
|
||||
-- callback = function()
|
||||
-- if vim.fn.isdirectory(vim.fn.getcwd()) == 1 then
|
||||
-- require('neo-tree.command').execute({ toggle = false, dir = vim.loop.cwd() })
|
||||
-- vim.cmd('wincmd p') -- Switch back to the previous buffer
|
||||
-- end
|
||||
-- end
|
||||
-- })
|
||||
vim.api.nvim_create_autocmd("VimEnter", {
|
||||
callback = function()
|
||||
if vim.fn.isdirectory(vim.fn.getcwd()) == 1 then
|
||||
require('neo-tree.command').execute({ toggle = false, dir = vim.loop.cwd() })
|
||||
vim.cmd('wincmd p') -- Switch back to the previous buffer
|
||||
end
|
||||
end
|
||||
})
|
||||
|
||||
|
|
2
init.lua
2
init.lua
|
@ -855,7 +855,7 @@ require('lazy').setup({
|
|||
-- Load the colorscheme here.
|
||||
-- Like many other themes, this one has different styles, and you could load
|
||||
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
|
||||
vim.cmd.colorscheme 'tokyonight-night'
|
||||
-- vim.cmd.colorscheme 'tokyonight-night'
|
||||
|
||||
-- You can configure highlights by doing something like:
|
||||
vim.cmd.hi 'Comment gui=none'
|
||||
|
|
|
@ -1,4 +1,14 @@
|
|||
return {
|
||||
{
|
||||
"felipeagc/fleet-theme-nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function ()
|
||||
vim.cmd.colorscheme 'fleet'
|
||||
end,
|
||||
enabled = false,
|
||||
},
|
||||
|
||||
{
|
||||
"tjdevries/colorbuddy.nvim",
|
||||
lazy = false,
|
||||
|
@ -84,7 +94,7 @@ return {
|
|||
priority = 1000,
|
||||
config = function()
|
||||
require('rose-pine').setup {
|
||||
|
||||
|
||||
}
|
||||
|
||||
vim.cmd.colorscheme 'rose-pine-moon'
|
||||
|
@ -133,4 +143,29 @@ return {
|
|||
end,
|
||||
enabled = false,
|
||||
},
|
||||
|
||||
{
|
||||
'vague2k/vague.nvim',
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme 'vague'
|
||||
end,
|
||||
enabled = false,
|
||||
},
|
||||
|
||||
{
|
||||
"blazkowolf/gruber-darker.nvim",
|
||||
opts = {
|
||||
bold = false,
|
||||
italic = {
|
||||
strings = false,
|
||||
},
|
||||
},
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme 'gruber-darker'
|
||||
end,
|
||||
}
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@ return {
|
|||
opts = {
|
||||
filesystem = {
|
||||
window = {
|
||||
-- position = "right",
|
||||
position = "right",
|
||||
mappings = {
|
||||
['\\'] = 'close_window',
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue