18 lines
522 B
Lua
18 lines
522 B
Lua
-- You can add your own plugins here or in other files in this directory!
|
|
-- I promise not to create any merge conflicts in this directory :)
|
|
--
|
|
-- See the kickstart.nvim README for more information
|
|
return {
|
|
{
|
|
'nvim-lualine/lualine.nvim',
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
opts = { options = { theme = 'tokyonight' } },
|
|
},
|
|
{
|
|
'chomosuke/typst-preview.nvim',
|
|
lazy = false, -- or ft = 'typst'
|
|
version = '1.*',
|
|
opts = {}, -- lazy.nvim will implicitly calls `setup {}`
|
|
},
|
|
}
|