diff --git a/init.lua b/init.lua index bde971a..af0c1da 100644 --- a/init.lua +++ b/init.lua @@ -6,7 +6,7 @@ require("pika.lazy") -- │ themes are under ./lua/pika/plugins/colorschemes.lua │ -- ╰──────────────────────────────────────────────────────╯ -vim.cmd.colorscheme("material-darker") +vim.cmd.colorscheme("gruvbox-material") -- Keybind for saving clipboard screenshot and inserting a Markdown link vim.api.nvim_set_keymap("n", "ps", ":lua SaveScreenshotAndInsertLink()", { noremap = true, silent = true }) diff --git a/lua/pika/plugins/colorschemes.lua b/lua/pika/plugins/colorschemes.lua index 7b8168e..3ccdb11 100644 --- a/lua/pika/plugins/colorschemes.lua +++ b/lua/pika/plugins/colorschemes.lua @@ -1,6 +1,7 @@ return { { "folke/tokyonight.nvim" }, -- { "catppuccin/nvim", name = "catppuccin" }, + { "EdenEast/nightfox.nvim" }, { "DanWlker/primeppuccin", name = "primeppuccin" }, { "rose-pine/neovim", name = "rose-pine" }, { "AlexvZyl/nordic.nvim" }, @@ -22,6 +23,9 @@ return { -- }, -- }, -- }, + { + "sainnhe/gruvbox-material", + }, { "scottmckendry/cyberdream.nvim", name = "cyberdream", @@ -34,8 +38,6 @@ return { }, { "ribru17/bamboo.nvim", - -- config = function() - -- require("bamboo").setup({ opts = { -- ────────────────────────────< optional configuration here >───────────────────────── code_style = { @@ -54,7 +56,5 @@ return { ["@comment"] = { fg = "#555653" }, }, }, - -- }) - -- end, }, } diff --git a/lua/pika/plugins/explorer.lua b/lua/pika/plugins/explorer.lua index 47237a3..68cda6b 100644 --- a/lua/pika/plugins/explorer.lua +++ b/lua/pika/plugins/explorer.lua @@ -23,12 +23,12 @@ return { -- "Yazi", -- desc = "Open yazi at the current file", -- }, - -- { - -- -- Open in the current working directory - -- "-", - -- "Yazi cwd", - -- desc = "Open the file manager in nvim's working directory", - -- }, + { + -- Open in the current working directory + "Lf", + "Yazi cwd", + desc = "Open the file manager in nvim's working directory", + }, { -- NOTE: this requires a version of yazi that includes -- https://github.com/sxyazi/yazi/pull/1305 from 2024-07-18