This commit is contained in:
Christoffer Martinsson 2023-06-03 21:48:04 +02:00
parent 0a5014a8e6
commit 9e43de1a2a
5 changed files with 3 additions and 11 deletions

View File

@ -11,9 +11,6 @@ return {
show_changelog = true, -- show the changelog after performing an update show_changelog = true, -- show the changelog after performing an update
auto_quit = false, -- automatically quit the current session after a successful update auto_quit = false, -- automatically quit the current session after a successful update
remotes = { -- easily add new remotes to track remotes = { -- easily add new remotes to track
-- ["remote_name"] = "https://remote_url.come/repo.git", -- full remote url
-- ["remote2"] = "github_user/repo", -- GitHub user/repo shortcut,
-- ["remote3"] = "github_user", -- GitHub user assume AstroNvim fork
}, },
}, },

View File

@ -17,7 +17,6 @@ return {
diagnostics_mode = 3, -- set the visibility of diagnostics in the UI (0=off, 1=only show in status line, 2=virtual text off, 3=all on) diagnostics_mode = 3, -- set the visibility of diagnostics in the UI (0=off, 1=only show in status line, 2=virtual text off, 3=all on)
icons_enabled = true, -- disable icons in the UI (disable if no nerd font is available, requires :PackerSync after changing) icons_enabled = true, -- disable icons in the UI (disable if no nerd font is available, requires :PackerSync after changing)
ui_notifications_enabled = true, -- disable notifications when toggling UI elements ui_notifications_enabled = true, -- disable notifications when toggling UI elements
copilot_filetypes = {markdown = true}, -- enable copilot for markdown files
}, },
} }
-- If you need more control, you can use the function()...end notation -- If you need more control, you can use the function()...end notation

View File

@ -20,9 +20,7 @@ return {
}, },
highlights = { highlights = {
astrodark = { astrodark = {},
},
}, },
} }
end, end,

View File

@ -1,9 +1,9 @@
return { return {
-- Add the community repository of plugin specifications -- Add the community repository of plugin specifications
"AstroNvim/astrocommunity", -- "AstroNvim/astrocommunity",
-- 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.completion.copilot-lua-cmp" }, -- { import = "astrocommunity.completion.copilot-lua-cmp" },
} }

View File

@ -24,10 +24,8 @@ return {
-- add more things to the ensure_installed table protecting against community packs modifying it -- add more things to the ensure_installed table protecting against community packs modifying it
opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, { opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
"prettier", "prettier",
"stylua",
"clang-format", "clang-format",
"black", "black",
"luacheck",
}) })
end, end,
}, },