diff options
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 30 |
1 files changed, 26 insertions, 4 deletions
@@ -27,10 +27,20 @@ require("lazy").setup({ { "ibhagwan/fzf-lua", dependencies = { "nvim-tree/nvim-web-devicons" }, - opts = {}, + opts = { + previewers = {}, + winopts = { + width = 0.4, + height = 0.5, + backdrop = 0, + border = 'none', + preview = { + hidden = true + } + } + }, }, { "m4xshen/autoclose.nvim", opts = {} }, - { "nyoom-engineering/oxocarbon.nvim" }, { "neovim/nvim-lspconfig" }, { 'hrsh7th/cmp-nvim-lsp' }, { 'hrsh7th/cmp-buffer' }, @@ -42,12 +52,24 @@ require("lazy").setup({ { 'nvim-lualine/lualine.nvim', dependencies = { 'nvim-tree/nvim-web-devicons' }, - opts = {}, + opts = { options = { + theme = 'onelight', + component_separators = { left = '', right = ''}, + section_separators = { left = '', right = ''}, + }}, }, + { + 'chomosuke/typst-preview.nvim', + lazy = false, + version = '1.*', + opts = { + invert_colors = 'auto', + }, + } }, -- Configure any other settings here. See the documentation for more details. -- colorscheme that will be used when installing plugins. - install = { colorscheme = { "monokai" } }, + install = { colorscheme = { 'monochrome' } }, -- automatically check for plugin updates checker = { enabled = true, notify = false }, }) |