This commit is contained in:
pika 2025-02-15 18:01:18 +01:00
parent 8ac4504621
commit 4b1f8f3c1e
4 changed files with 27 additions and 3 deletions

View file

@ -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("gruvbox-material") vim.cmd.colorscheme("nekonight-shades-of-purple-dark")
-- 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 })

View file

@ -8,6 +8,7 @@ return {
{ "eldritch-theme/eldritch.nvim" }, { "eldritch-theme/eldritch.nvim" },
-- { "sainnhe/sonokai" }, -- { "sainnhe/sonokai" },
{ "samharju/synthweave.nvim" }, { "samharju/synthweave.nvim" },
{ "sainnhe/gruvbox-material" },
-- { "66RING/zephyr-nvim" }, -- { "66RING/zephyr-nvim" },
{ "pauchiner/pastelnight.nvim" }, { "pauchiner/pastelnight.nvim" },
{ "ptdewey/darkearth-nvim" }, { "ptdewey/darkearth-nvim" },
@ -24,7 +25,24 @@ return {
-- }, -- },
-- }, -- },
{ {
"sainnhe/gruvbox-material", "neko-night/nvim",
lazy = false,
-- priority = 1000,
opts = {
transparent = false, -- Enable this to disable setting the background color
terminal_colors = true, -- Configure the colors used when opening a `:terminal` in Neovim
styles = {
-- Style to be applied to different syntax groups
-- Value is any valid attr-list value for `:help nvim_set_hl`
comments = { italic = true },
keywords = { italic = true },
functions = { bold = true },
variables = { bold = true },
-- Background styles. Can be "dark", "transparent" or "normal"
sidebars = "dark", -- style for sidebars, see below
floats = "dark", -- style for floating windows
},
},
}, },
{ {
"scottmckendry/cyberdream.nvim", "scottmckendry/cyberdream.nvim",

View file

@ -0,0 +1,6 @@
return {
"zbirenbaum/copilot.lua",
-- cmd = "Copilot",
event = "InsertEnter",
opts = {},
}

@ -1 +1 @@
Subproject commit bed12dadf8a59b864b3d16d25cf4bbc0fb91da07 Subproject commit e7f703ecb74d00eeea817b0b677c8715bdc23521