configured hyprspace

This commit is contained in:
Tomas Rivera
2026-03-01 18:33:19 +01:00
parent 31aab60790
commit 146d3cd512
3 changed files with 11 additions and 38 deletions
+8 -3
View File
@@ -204,7 +204,7 @@ in
#######################
"[workspace 1 silent] sleep 3 && kitty -o font_size=16 -e sh -c 'custom-weather'"
# will launch weather (Third) with a reduced font size
"[workspace 1 silent] sleep 2 && kitty -o font_size=11§ -e sh -c 'custom-cowsay'"
"[workspace 1 silent] sleep 2 && kitty -o font_size=11 -e sh -c 'custom-cowsay'"
# will launch quotes (fourth)
"[workspace 1 silent] kitty -e 'custom-launch'"
# the terminal will exec .zshrc so FastFetch will be launched (First)
@@ -287,8 +287,13 @@ in
# enable ipc events for shake
ipc = false;
};
};
};
"plugin:overview" = {
disableGestures = true;
showEmptyWorkspace = true;
workspaceActiveBorder = "rgb(ab7746)";
disableBlur = true;
};
#####################################################
#####################################################
+2 -2
View File
@@ -583,10 +583,10 @@ vim.keymap.set('n', '<leader>fb', builtin.buffers, { desc = 'Telescope buffers'
vim.keymap.set('n', '<leader>fh', builtin.help_tags, { desc = 'Telescope help tags' })
-- Disable relative numbers even if a plugin (like neovim-sensible) turns them on
vim.opt.colorcolumn = ""
vim.api.nvim_create_autocmd("VimEnter", {
callback = function()
vim.opt.relativenumber = false
vim.opt.colorcolumn = ""
vim.opt.relativenumber = false
end,
})
'';