update plugins and color scheme
This commit is contained in:
parent
ed7a4ba03d
commit
4f77ec1ab9
3 changed files with 21 additions and 2 deletions
4
init.lua
4
init.lua
|
@ -19,7 +19,9 @@ return {
|
||||||
|
|
||||||
-- Set colorscheme to use
|
-- Set colorscheme to use
|
||||||
-- colorscheme = "astrodark",
|
-- colorscheme = "astrodark",
|
||||||
colorscheme = "catppuccin",
|
-- colorscheme = "catppuccin",
|
||||||
|
colorscheme = "sonokai",
|
||||||
|
-- colorscheme = "monokai-pro-nvim",
|
||||||
|
|
||||||
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
|
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
|
||||||
diagnostics = {
|
diagnostics = {
|
||||||
|
|
|
@ -4,8 +4,11 @@ return {
|
||||||
-- example of imporing a plugin, comment out to use it or add your own
|
-- example of imporing a plugin, comment out to use it or add your own
|
||||||
-- available plugins can be found at https://github.com/AstroNvim/astrocommunity
|
-- available plugins can be found at https://github.com/AstroNvim/astrocommunity
|
||||||
|
|
||||||
{ import = "astrocommunity.colorscheme.catppuccin" },
|
-- { import = "astrocommunity.colorscheme.catppuccin" },
|
||||||
|
{ import = "astrocommunity.colorscheme.sonokai" },
|
||||||
|
-- { import = "astrocommunity.colorscheme.monokai-pro-nvim" },
|
||||||
-- { import = "astrocommunity.completion.copilot-lua-cmp" },
|
-- { import = "astrocommunity.completion.copilot-lua-cmp" },
|
||||||
-- { import = "astrocommunity.pack.typescript" },
|
-- { import = "astrocommunity.pack.typescript" },
|
||||||
-- { import = "astrocommunity.pack.markdown" },
|
-- { import = "astrocommunity.pack.markdown" },
|
||||||
|
-- { import = "astrocommunity.editing-support.multicursors-nvim" },
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,4 +22,18 @@ return {
|
||||||
{ "<leader>T", "<cmd>TodoTelescope<cr>", desc = "Open TODOs in Telescope" },
|
{ "<leader>T", "<cmd>TodoTelescope<cr>", desc = "Open TODOs in Telescope" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
-- {
|
||||||
|
-- "loctvl842/monokai-pro.nvim",
|
||||||
|
-- config = function()
|
||||||
|
-- require("monokai-pro-nvim").setup {
|
||||||
|
-- filter = "spectrum", -- classic | octagon | pro | machine | ristretto | spectrum
|
||||||
|
-- }
|
||||||
|
-- end
|
||||||
|
-- },
|
||||||
|
-- {
|
||||||
|
-- "mg979/vim-visual-multi",
|
||||||
|
-- event = "User AstroFile",
|
||||||
|
-- -- lazy = false,
|
||||||
|
-- -- keys = "gm",
|
||||||
|
-- },
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue