changes
This commit is contained in:
parent
668f278398
commit
31a0f94839
3 changed files with 11 additions and 11 deletions
2
init.lua
2
init.lua
|
@ -6,7 +6,7 @@ require("pika.lazy")
|
||||||
-- │ themes are under ./lua/pika/plugins/colorschemes.lua │
|
-- │ 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
|
-- Keybind for saving clipboard screenshot and inserting a Markdown link
|
||||||
vim.api.nvim_set_keymap("n", "<leader>ps", ":lua SaveScreenshotAndInsertLink()<CR>", { noremap = true, silent = true })
|
vim.api.nvim_set_keymap("n", "<leader>ps", ":lua SaveScreenshotAndInsertLink()<CR>", { noremap = true, silent = true })
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
return {
|
return {
|
||||||
{ "folke/tokyonight.nvim" },
|
{ "folke/tokyonight.nvim" },
|
||||||
-- { "catppuccin/nvim", name = "catppuccin" },
|
-- { "catppuccin/nvim", name = "catppuccin" },
|
||||||
|
{ "EdenEast/nightfox.nvim" },
|
||||||
{ "DanWlker/primeppuccin", name = "primeppuccin" },
|
{ "DanWlker/primeppuccin", name = "primeppuccin" },
|
||||||
{ "rose-pine/neovim", name = "rose-pine" },
|
{ "rose-pine/neovim", name = "rose-pine" },
|
||||||
{ "AlexvZyl/nordic.nvim" },
|
{ "AlexvZyl/nordic.nvim" },
|
||||||
|
@ -22,6 +23,9 @@ return {
|
||||||
-- },
|
-- },
|
||||||
-- },
|
-- },
|
||||||
-- },
|
-- },
|
||||||
|
{
|
||||||
|
"sainnhe/gruvbox-material",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"scottmckendry/cyberdream.nvim",
|
"scottmckendry/cyberdream.nvim",
|
||||||
name = "cyberdream",
|
name = "cyberdream",
|
||||||
|
@ -34,8 +38,6 @@ return {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ribru17/bamboo.nvim",
|
"ribru17/bamboo.nvim",
|
||||||
-- config = function()
|
|
||||||
-- require("bamboo").setup({
|
|
||||||
opts = {
|
opts = {
|
||||||
-- ────────────────────────────< optional configuration here >─────────────────────────
|
-- ────────────────────────────< optional configuration here >─────────────────────────
|
||||||
code_style = {
|
code_style = {
|
||||||
|
@ -54,7 +56,5 @@ return {
|
||||||
["@comment"] = { fg = "#555653" },
|
["@comment"] = { fg = "#555653" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
-- })
|
|
||||||
-- end,
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,12 +23,12 @@ return {
|
||||||
-- "<cmd>Yazi<cr>",
|
-- "<cmd>Yazi<cr>",
|
||||||
-- desc = "Open yazi at the current file",
|
-- desc = "Open yazi at the current file",
|
||||||
-- },
|
-- },
|
||||||
-- {
|
{
|
||||||
-- -- Open in the current working directory
|
-- Open in the current working directory
|
||||||
-- "<leader>-",
|
"<leader>Lf",
|
||||||
-- "<cmd>Yazi cwd<cr>",
|
"<cmd>Yazi cwd<cr>",
|
||||||
-- desc = "Open the file manager in nvim's working directory",
|
desc = "Open the file manager in nvim's working directory",
|
||||||
-- },
|
},
|
||||||
{
|
{
|
||||||
-- NOTE: this requires a version of yazi that includes
|
-- NOTE: this requires a version of yazi that includes
|
||||||
-- https://github.com/sxyazi/yazi/pull/1305 from 2024-07-18
|
-- https://github.com/sxyazi/yazi/pull/1305 from 2024-07-18
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue