astro-nvim-v3 - group color schemes
This commit is contained in:
@@ -9,7 +9,7 @@ return {
|
||||
---@type AstroUIOpts
|
||||
opts = {
|
||||
-- change colorscheme
|
||||
colorscheme = "cyberdream",
|
||||
colorscheme = "monokai-pro",
|
||||
-- AstroUI allows you to easily modify highlight groups easily for any and all colorschemes
|
||||
highlights = require "plugins.configs.ui.highlights",
|
||||
-- Icons can be configured throughout the interface
|
||||
|
||||
@@ -15,7 +15,7 @@ return {
|
||||
cleaning_interval = 1250, -- (milliseconds) automatically clean MsgArea after displaying `message`. See :h MsgArea
|
||||
},
|
||||
trigger_events = { -- See :h events
|
||||
immediate_save = { "BufLeave", "FocusLost" }, -- vim events that trigger an immediate save
|
||||
-- immediate_save = { "BufLeave", "FocusLost" }, -- vim events that trigger an immediate save
|
||||
defer_save = {"TextChanged" }, -- vim events that trigger a deferred save (saves after `debounce_delay`)
|
||||
cancel_defered_save = { "InsertEnter" }, -- vim events that cancel a pending deferred save
|
||||
},
|
||||
|
||||
@@ -61,4 +61,31 @@ return {
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
"scottmckendry/cyberdream.nvim",
|
||||
opts = {
|
||||
transparent = true,
|
||||
italic_comments = true,
|
||||
hide_fillchars = true,
|
||||
borderless_telescope = false,
|
||||
terminal_colors = false,
|
||||
integrations = { rainbow_delimiters = true },
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
"loctvl842/monokai-pro.nvim",
|
||||
opts = {
|
||||
terminal_colors = true,
|
||||
devicons = true, -- highlight the icons of `nvim-web-devicons`
|
||||
filter = "pro", -- classic | octagon | pro | machine | ristretto | spectrum
|
||||
plugins = {
|
||||
indent_blankline = {
|
||||
context_highlight = "pro", -- default | pro
|
||||
context_start_underline = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
return {
|
||||
"scottmckendry/cyberdream.nvim",
|
||||
opts = {
|
||||
transparent = true,
|
||||
italic_comments = true,
|
||||
hide_fillchars = true,
|
||||
borderless_telescope = false,
|
||||
terminal_colors = false,
|
||||
integrations = { rainbow_delimiters = true },
|
||||
},
|
||||
}
|
||||
@@ -19,7 +19,10 @@ return {
|
||||
{ "stevearc/resession.nvim", enabled = false },
|
||||
{ "AstroNvim/astrotheme", enabled = false },
|
||||
{ "echasnovski/mini.move", enabled = false },
|
||||
|
||||
{ "scottmckendry/cyberdream.nvim", enabled = false },
|
||||
{ "HiPhish/rainbow-delimiters.nvim", enabled = false },
|
||||
{ "xiyaowong/transparent.nvim", enabled = false },
|
||||
|
||||
-- { "hrsh7th/nvim-cmp", enabled = false },
|
||||
}
|
||||
|
||||
|
||||
7
lua/plugins/nvim-dap-ui.lua
Normal file
7
lua/plugins/nvim-dap-ui.lua
Normal file
@@ -0,0 +1,7 @@
|
||||
return {
|
||||
"rcarriga/nvim-dap-ui",
|
||||
requires = { "mfussenegger/nvim-dap", "nvim-neotest/nvim-nio" },
|
||||
opts = {
|
||||
eval = true
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user