clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

update zen-mode and theme

+33 -14
+2 -2
nvim/lua/sspaeti/lazy.lua
··· 17 17 -- define colorscheme based on session name 18 18 local sessionThemes = { 19 19 ["work"] = "gruvbox-material", 20 - ["dotfiles"] = "kanagawa-paper", --also "solarizev-osaka", 21 - ["de-projects"] = "rose-pine", 20 + ["dotfiles"] = "vague", 21 + ["de-projects"] = "kanagawa-paper", 22 22 ["DEDP"] = "rose-pine", 23 23 ["default"] = "kanagawa", --required: default theme 24 24 }
-11
nvim/lua/sspaeti/plugins/_init_lazy.lua
··· 119 119 --'davidhalter/jedi-vim', 120 120 -- "jmcantrell/vim-virtualenv", --very slow: check if still needed? 121 121 { 122 - "folke/zen-mode.nvim", 123 - event = "VeryLazy", 124 - config = function() 125 - require("zen-mode").setup({ 126 - -- your configuration comes here 127 - -- or leave it empty to use the default settings 128 - -- refer to the configuration section below 129 - }) 130 - end, 131 - }, 132 - { 133 122 "jcdickinson/wpm.nvim", 134 123 event = "VeryLazy", 135 124 config = function()
+2 -1
nvim/lua/sspaeti/plugins/themes.lua
··· 19 19 { "catppuccin/nvim", name = "catppuccin", event = "VeryLazy" }, --light theme 20 20 { "craftzdog/solarized-osaka.nvim", lazy = false, priority = 1000 }, 21 21 { "projekt0n/github-nvim-theme", event = "VeryLazy", version = "*" }, 22 - { "sho-87/kanagawa-paper.nvim" , lazy = false, priority = 1000, opts = {}, } 22 + { "sho-87/kanagawa-paper.nvim" , lazy = false, priority = 1000, opts = {}, }, 23 + { "vague2k/vague.nvim", lazy = false, priority = 1000} 23 24 -- { "ColorMyPencil", 24 25 -- function ColorMyPencils(color) 25 26 -- color = color or "kanagawa"
+29
nvim/lua/sspaeti/plugins/zen-mode.lua
··· 1 + return { 2 + "folke/zen-mode.nvim", 3 + lazy = false, 4 + priority = 1000, 5 + config = function() 6 + require("zen-mode").setup({ 7 + on_open = function(_) 8 + vim.fn.system([[tmux set status off]]) 9 + vim.fn.system( 10 + [[tmux list-panes -F '\#F' | grep -q Z || tmux resize-pane -Z]]) 11 + end, 12 + on_close = function(_) 13 + vim.fn.system([[tmux set status on]]) 14 + vim.fn.system( 15 + [[tmux list-panes -F '\#F' | grep -q Z && tmux resize-pane -Z]]) 16 + end, 17 + window = { 18 + -- width = 0.66, 19 + -- backdrop = 1, 20 + options = { 21 + relativenumber = false, 22 + signcolumn = "no", 23 + number = false, -- disable number column 24 + }, 25 + tabline 26 + }, 27 + }) 28 + end, 29 + }