whatever
This commit is contained in:
@@ -15,6 +15,7 @@ require("lazy").setup({
|
|||||||
{ import = "lazyvim.plugins.extras.lang.json" },
|
{ import = "lazyvim.plugins.extras.lang.json" },
|
||||||
-- { import = "lazyvim.plugins.extras.ui.mini-animate" },
|
-- { import = "lazyvim.plugins.extras.ui.mini-animate" },
|
||||||
{ import = "lazyvim.plugins.extras.dap.core" },
|
{ import = "lazyvim.plugins.extras.dap.core" },
|
||||||
|
{ import = "lazyvim.plugins.extras.editor.flash" },
|
||||||
-- import/override with your plugins
|
-- import/override with your plugins
|
||||||
{ import = "plugins" },
|
{ import = "plugins" },
|
||||||
},
|
},
|
||||||
@@ -45,5 +46,3 @@ require("lazy").setup({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.api.nvim_set_hl(0, "@type.qualifier", { link = "Keyword" })
|
|
||||||
|
|||||||
@@ -9,12 +9,37 @@ return {
|
|||||||
name = "catppuccin",
|
name = "catppuccin",
|
||||||
opts = {
|
opts = {
|
||||||
flavour = "frappe",
|
flavour = "frappe",
|
||||||
},
|
-- custom_highlights = function(colors)
|
||||||
},
|
-- return {
|
||||||
{ "ellisonleao/gruvbox.nvim" },
|
-- ["@type.qualifier"] = { link = "StorageClass" },
|
||||||
{"rktjmp/lush.nvim" },
|
-- ["@lsp.typemod.annotation"] = { link = "@attribute" },
|
||||||
{"briones-gabriel/darcula-solid.nvim",
|
-- ["@lsp.type.interface"] = { link = "Structure" },
|
||||||
depends = {"rktjmp/lush.nvim" },
|
-- ["@lsp.type.method"] = {},
|
||||||
},
|
-- ["StorageClass"] = { fg = colors.mauve },
|
||||||
{ "doums/darcula" },
|
-- ["@parameter"] = { fg = colors.text },
|
||||||
|
-- ["@property"] = { fg = colors.maroon },
|
||||||
|
-- ["@field"] = { fg = colors.maroon },
|
||||||
|
-- ["Function"] = { fg = colors.text },
|
||||||
|
-- ["Type"] = { fg = colors.text },
|
||||||
|
-- ["Structure"] = { fg = colors.text },
|
||||||
|
-- ["@method"] = { fg = colors.yellow },
|
||||||
|
-- }
|
||||||
|
-- end,
|
||||||
|
custom_highlights = function(colors)
|
||||||
|
return {
|
||||||
|
["@type.qualifier"] = { link = "StorageClass" },
|
||||||
|
["@parameter"] = { fg = colors.text },
|
||||||
|
["@field"] = { fg = colors.maroon },
|
||||||
|
["@lsp.type.interface"] = { link = "Structure" },
|
||||||
|
["StorageClass"] = { fg = colors.mauve },
|
||||||
|
}
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
-- { "ellisonleao/gruvbox.nvim" },
|
||||||
|
-- {"rktjmp/lush.nvim" },
|
||||||
|
-- {"briones-gabriel/darcula-solid.nvim",
|
||||||
|
-- depends = {"rktjmp/lush.nvim" },
|
||||||
|
-- },
|
||||||
|
-- { "doums/darcula" },
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,13 +27,13 @@ return {
|
|||||||
"windwp/nvim-spectre",
|
"windwp/nvim-spectre",
|
||||||
enabled = false,
|
enabled = false,
|
||||||
},
|
},
|
||||||
{
|
-- {
|
||||||
"ggandor/leap-spooky.nvim",
|
-- "ggandor/leap-spooky.nvim",
|
||||||
enabled = true,
|
-- enabled = true,
|
||||||
opts = {
|
-- opts = {
|
||||||
paste_on_remote_yank = true,
|
-- paste_on_remote_yank = true,
|
||||||
},
|
-- },
|
||||||
},
|
-- },
|
||||||
{
|
{
|
||||||
"ggandor/flit.nvim",
|
"ggandor/flit.nvim",
|
||||||
enabled = false,
|
enabled = false,
|
||||||
@@ -69,17 +69,17 @@ return {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
-- {
|
{
|
||||||
-- "hrsh7th/nvim-cmp",
|
"hrsh7th/nvim-cmp",
|
||||||
-- opts = function(_, opts)
|
opts = function(_, opts)
|
||||||
-- local cmp = require("cmp")
|
local cmp = require("cmp")
|
||||||
-- opts.sources = cmp.config.sources({
|
opts.sources = cmp.config.sources({
|
||||||
-- { name = "nvim_lsp" },
|
{ name = "nvim_lsp" },
|
||||||
-- -- { name = "luasnip" },
|
{ name = "luasnip" },
|
||||||
-- })
|
})
|
||||||
-- return opts
|
return opts
|
||||||
-- end,
|
end,
|
||||||
-- },
|
},
|
||||||
{
|
{
|
||||||
"nvim-treesitter/nvim-treesitter-context",
|
"nvim-treesitter/nvim-treesitter-context",
|
||||||
depends = {
|
depends = {
|
||||||
|
|||||||
Reference in New Issue
Block a user