diff options
author | 2025-07-20 17:15:54 -0400 | |
---|---|---|
committer | 2025-07-20 17:15:54 -0400 | |
commit | 8148b432d1ff51b094b8c6e109f791400ba54e5b (patch) | |
tree | dcc821d9a5b439e8da926c027ddbd501b45cfb3f /init.lua | |
parent | 9bf89c0eba6f5c7ba64aceb6430e2a90da4b325c (diff) | |
download | nvim-8148b432d1ff51b094b8c6e109f791400ba54e5b.tar.gz nvim-8148b432d1ff51b094b8c6e109f791400ba54e5b.zip |
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 }, }) |