mirror of
https://github.com/Hydroxycarbamide/astrovim_user.git
synced 2025-05-04 12:19:08 -04:00
disable codeium and add markdown preview
This commit is contained in:
parent
0f119de936
commit
dcd6af00f6
2 changed files with 12 additions and 3 deletions
|
@ -8,6 +8,7 @@ return {
|
|||
{ import = "astrocommunity.pack.lua" },
|
||||
-- import/override with your plugins folder
|
||||
{ import = "astrocommunity.colorscheme.catppuccin" },
|
||||
{ import = "astrocommunity.colorscheme.rose-pine" },
|
||||
--{ import = "astrocommunity.scrolling.nvim-scrollbar" },
|
||||
{ import = "astrocommunity.scrolling.satellite-nvim" },
|
||||
{ import = "astrocommunity.scrolling.neoscroll-nvim" },
|
||||
|
|
|
@ -7,14 +7,21 @@ return {
|
|||
|
||||
-- == Examples of Adding Plugins ==
|
||||
|
||||
"andweeb/presence.nvim",
|
||||
-- "andweeb/presence.nvim",
|
||||
{
|
||||
"ray-x/lsp_signature.nvim",
|
||||
event = "BufRead",
|
||||
config = function() require("lsp_signature").setup() end,
|
||||
},
|
||||
|
||||
-- == Examples of Overriding Plugins ==
|
||||
{
|
||||
"iamcco/markdown-preview.nvim",
|
||||
cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" },
|
||||
build = "cd app && npm install",
|
||||
init = function()
|
||||
vim.g.mkdp_filetypes = { "markdown" }
|
||||
end,
|
||||
ft = { "markdown" },
|
||||
},
|
||||
|
||||
-- customize alpha options
|
||||
{
|
||||
|
@ -84,6 +91,7 @@ return {
|
|||
|
||||
{
|
||||
"Exafunction/codeium.nvim",
|
||||
enabled = false,
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"hrsh7th/nvim-cmp",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue