change theme, add md preview back, disable notify

This commit is contained in:
2025-06-11 20:09:59 -04:00
parent ee11ca87bb
commit 1aedadccd4
2 changed files with 13 additions and 5 deletions
+10
View File
@@ -0,0 +1,10 @@
return {
'iamcco/markdown-preview.nvim',
cmd = { 'MarkdownPreviewToggle', 'MarkdownPreview', 'MarkdownPreviewStop' },
build = 'cd app && yarn install',
init = function()
vim.g.mkdp_filetypes = { 'markdown' }
end,
ft = { 'markdown' },
}
+3 -5
View File
@@ -3,16 +3,14 @@ return { -- You can easily change to a different colorscheme.
-- change the command in the config to whatever the name of that colorscheme is. -- change the command in the config to whatever the name of that colorscheme is.
-- --
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
'mofiqul/vscode.nvim', 'folke/tokyonight.nvim',
lazy = false,
opts = { transparent = true, styles = { sidebars = 'transparent', floats = 'transparent' } }, opts = { transparent = true, styles = { sidebars = 'transparent', floats = 'transparent' } },
init = function() init = function()
-- Load the colorscheme here. -- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load -- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'vscode' vim.cmd.colorscheme 'tokyonight-night'
-- You can configure highlights by doing something like:
vim.cmd.hi 'Comment gui=none'
end, end,
priority = 1000, priority = 1000,
} }