diff --git a/init.lua b/init.lua index af0c1da..8778905 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("gruvbox-material") +vim.cmd.colorscheme("nekonight-shades-of-purple-dark") -- 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 3ccdb11..6e5bdd7 100644 --- a/lua/pika/plugins/colorschemes.lua +++ b/lua/pika/plugins/colorschemes.lua @@ -8,6 +8,7 @@ return { { "eldritch-theme/eldritch.nvim" }, -- { "sainnhe/sonokai" }, { "samharju/synthweave.nvim" }, + { "sainnhe/gruvbox-material" }, -- { "66RING/zephyr-nvim" }, { "pauchiner/pastelnight.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", diff --git a/lua/pika/plugins/copilot.lua b/lua/pika/plugins/copilot.lua new file mode 100644 index 0000000..817e421 --- /dev/null +++ b/lua/pika/plugins/copilot.lua @@ -0,0 +1,6 @@ +return { + "zbirenbaum/copilot.lua", + -- cmd = "Copilot", + event = "InsertEnter", + opts = {}, +} diff --git a/snippets b/snippets index bed12da..e7f703e 160000 --- a/snippets +++ b/snippets @@ -1 +1 @@ -Subproject commit bed12dadf8a59b864b3d16d25cf4bbc0fb91da07 +Subproject commit e7f703ecb74d00eeea817b0b677c8715bdc23521