Compare commits

..

No commits in common. "3056ac5c415e89ee834cf71eae283950a0198662" and "0caec0dee085aa58e15ebd3b5623670259eb83b9" have entirely different histories.

8 changed files with 21 additions and 34 deletions

View file

@ -130,7 +130,7 @@ def main():
print(f"{color('message:',11)}\n {summary}")
actions = {
"commit": lambda: run(f"git commit -m \'{summary}\'", capture=False),
"commit": lambda: run(f"git commit -m '{summary}'", capture=False),
"commit(with message)": lambda: run(
f"git commit -m '{summary}' -m '# note: abort with :cq!' -e", capture=False
),

View file

@ -69,9 +69,9 @@ if [[ -z $updates_info ]]; then
fi
if [[ -n $notify ]]; then
notify-send -w "System Updates Available!" "$updates_info" &
notify-send -w "System Updates Available!" "$updates_info"
else
echo "System Updates Available!"
echo "nystem Updates Available!"
echo "$updates_info"
update_system
fi

View file

@ -20,6 +20,10 @@ return {
["<C-Up>"] = false,
["<C-q>"] = false,
["<C-s>"] = false,
["<leader>fh"] = false,
["<leader>fm"] = false,
["<leader>fn"] = false,
["<leader>fo"] = false,
["<leader>sb"] = false,
["<leader>sc"] = false,
["<leader>sh"] = false,
@ -32,6 +36,10 @@ return {
j = { "gj", desc = "Navigate down" },
k = { "gk", desc = "Navigate down" },
},
t = {
-- setting a mapping to false will disable it
-- ["<esc>"] = false,
},
}
-- map('n', 'j', "v:count ? 'j' : 'gj'", { expr = true, noremap = true })

View file

@ -1,24 +1,4 @@
-- load config from local file...
-- local p = function(name)
-- return string.format("require'config.%s'", name)
-- end
-- d for default :P
local d = function(name)
return string.format("require'%s'.setup({})", name)
end
return {
{ "lambdalisue/suda.vim" }, -- for sudo reading and writing
-- theming
{
"catppuccin/nvim",
as = "catppuccin",
config = d("zk"),
},
-- { "LnL7/vim-nix" },
-- language specific
{ "alaviss/nim.nvim" },
{
"quarto-dev/quarto-vim",
requires = {
@ -26,9 +6,11 @@ return {
},
ft = { "quarto" },
},
-- general tools
{
"mickael-menu/zk-nvim",
config = d("zk"),
{ "catppuccin/nvim", as = "catppuccin",
config = function()
require("catppuccin").setup {}
end,
},
{ 'LnL7/vim-nix' },
{ 'lambdalisue/suda.vim' }, -- for sudo reading and writing
}

View file

@ -4,7 +4,7 @@ return {
"gopls",
"html",
"jsonls",
-- "pyright",
"pyright",
"sumneko_lua",
"texlab",
"yamlls",

View file

@ -23,10 +23,8 @@ gui:
- "#89b4fa" # Blue
selectedLineBgColor:
- "#313244" # Surface0
- reverse
selectedRangeBgColor:
- "#313244" # Surface0
- reverse
cherryPickedCommitBgColor:
- "#94e2d5" # Teal
cherryPickedCommitFgColor:

View file

@ -1,5 +1,5 @@
[Settings]
gtk-application-prefer-dark-theme=true
gtk-cursor-theme-name=phinger-cursors-light
gtk-application-prefer-dark-theme = true
gtk-theme-name=Catppuccin-Mocha-Standard-Rosewater-Dark
gtk-icon-theme-name=Papirus-Dark
gtk-theme-name=Catppuccin-Mocha

View file

@ -3,8 +3,7 @@ setw -g mode-keys vi
set -g prefix C-a
unbind C-b
set -g mouse on
bind C-a send-prefix
# smart pane switching with awareness of vim splits
bind h select-pane -L