summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorGravatar Matthew Wozniak <me@woz.blue> 2025-07-20 17:15:54 -0400
committerGravatar Matthew Wozniak <me@woz.blue> 2025-07-20 17:15:54 -0400
commit8148b432d1ff51b094b8c6e109f791400ba54e5b (patch)
treedcc821d9a5b439e8da926c027ddbd501b45cfb3f /init.lua
parent9bf89c0eba6f5c7ba64aceb6430e2a90da4b325c (diff)
downloadnvim-8148b432d1ff51b094b8c6e109f791400ba54e5b.tar.gz
nvim-8148b432d1ff51b094b8c6e109f791400ba54e5b.zip
new binds, monochromeHEADmaster
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua30
1 files changed, 26 insertions, 4 deletions
diff --git a/init.lua b/init.lua
index a404323..1cb9613 100644
--- a/init.lua
+++ b/init.lua
@@ -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 },
})