some colorscheme changes
This commit is contained in:
parent
a32e33117e
commit
214141ac85
3 changed files with 3 additions and 5 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("monet")
|
||||||
|
|
||||||
-- 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,5 +1,6 @@
|
||||||
return {
|
return {
|
||||||
{ "folke/tokyonight.nvim" },
|
{ "folke/tokyonight.nvim" },
|
||||||
|
{ "fynnfluegge/monet.nvim", name = "monet" },
|
||||||
-- { "catppuccin/nvim", name = "catppuccin" },
|
-- { "catppuccin/nvim", name = "catppuccin" },
|
||||||
-- { "EdenEast/nightfox.nvim" },
|
-- { "EdenEast/nightfox.nvim" },
|
||||||
-- { "DanWlker/primeppuccin", name = "primeppuccin" },
|
-- { "DanWlker/primeppuccin", name = "primeppuccin" },
|
||||||
|
|
|
@ -7,14 +7,11 @@ return {
|
||||||
},
|
},
|
||||||
config = function()
|
config = function()
|
||||||
require("nvim-treesitter.configs").setup({
|
require("nvim-treesitter.configs").setup({
|
||||||
highlight = {
|
highlight = { enable = true },
|
||||||
enable = true,
|
|
||||||
},
|
|
||||||
indent = { enable = true },
|
indent = { enable = true },
|
||||||
autotag = { enable = true },
|
autotag = { enable = true },
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
"bash",
|
"bash",
|
||||||
-- "fish",
|
|
||||||
"gitignore",
|
"gitignore",
|
||||||
"git_config",
|
"git_config",
|
||||||
"markdown",
|
"markdown",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue