clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

auto open zen-mode

+12 -1
+2 -1
nvim-wp/lua/sspaeti/plugins/zen.lua
··· 1 1 return { 2 2 "folke/zen-mode.nvim", 3 - event = "VeryLazy", 3 + lazy = false, 4 + priority = 1000, 4 5 config = function() 5 6 require("zen-mode").setup({ 6 7 on_open = function(_)
+10
nvim-wp/lua/sspaeti/set_wp.lua
··· 48 48 -- Apply the modified highlight 49 49 vim.api.nvim_set_hl(0, "@string.special.url", new_hl) 50 50 end, 100) 51 + 52 + 53 + -- Auto-enable ZenMode on startup with a slight delay 54 + vim.api.nvim_create_autocmd("VimEnter", { 55 + callback = function() 56 + vim.defer_fn(function() 57 + vim.cmd("ZenMode") 58 + end, 0.1) -- delay to ensure plugin is loaded 59 + end 60 + })