Compare commits

...

8 Commits

Author SHA1 Message Date
74f76961e0
Format files 2024-12-26 20:17:36 +01:00
859e7341fd Update packages.txt 2024-12-26 20:15:32 +01:00
643e658bdb Update LSP config for NeoVim 2024-12-26 20:15:32 +01:00
81da1ff246 Fix zen-browser detection 2024-12-26 20:15:32 +01:00
4201a2860b Update keys and it's configs 2024-12-26 20:15:32 +01:00
078cd37258 Update zsh config 2024-12-26 20:15:32 +01:00
wzykubek
2f864f889d Update ssh config 2024-12-26 20:15:24 +01:00
wzykubek
2f5879c4f1 Add MPRIS module to waybar 2024-12-26 20:14:05 +01:00
9 changed files with 38 additions and 19 deletions

View File

@ -1,9 +1,7 @@
[user]
name = wzykubek
email = wz-git@mailbox.org
signingkey = ~/.ssh/id_yubico1_sk
[gpg]
format = ssh
name = Wiktor Zykubek
email = dev@wzykubek.xyz
signingkey = 0xE2F941AEA250AFFC
[format]
pretty = oneline
[log]
@ -18,3 +16,5 @@
cmd = kitten diff $LOCAL $REMOTE
[difftool "kitty.gui"]
cmd = kitten diff $LOCAL $REMOTE
[commit]
gpgsign = true

View File

@ -276,5 +276,5 @@ workspace = special:magic, gapsout:100, on-created-empty:kitty
# Force workspace
windowrule = workspace 1, ^(kitty)$
windowrule = workspace 2 silent, ^(zen-alpha)$
windowrule = workspace 2 silent, ^(zen-beta)$
#: }}}

View File

@ -5,6 +5,7 @@ return {
css = { "prettier" },
html = { "prettier" },
jsonc = { "prettier" },
go = { "golines" },
},
-- format_on_save = {

View File

@ -4,7 +4,7 @@ require("nvchad.configs.lspconfig").defaults()
local lspconfig = require "lspconfig"
-- EXAMPLE
local servers = { "html", "cssls", "pyright" }
local servers = { "html", "cssls", "pyright", "clangd", "gopls" }
local nvlsp = require "nvchad.configs.lspconfig"
-- lsps with default config

View File

@ -1,7 +1,7 @@
bat
brightnessctl
btrfs-progs
btop
btrfs-progs
cava
cliphist
curl
@ -13,11 +13,15 @@ hyprlock
hyprpaper
imagemagick
jq
kitty-git
kdeconnect
kitty
less
mako
mdcat
neovim
noto-fonts-cjk
openssh
pam-u2f
pipewire
pipewire-alsa
pipewire-jack
@ -42,4 +46,5 @@ xdg-desktop-portal-hyprland
xdg-user-dirs
yazi
yubikey-manager
zen-browser-bin
zsh

View File

@ -6,10 +6,10 @@ Host wyse
HostName 192.168.1.5
User root
Host podman
Host alma
HostName 192.168.1.10
User root
User cloud
Port 2222
Host *
IdentityFile ~/.ssh/id_yubico1_sk
IdentitiesOnly yes
IdentityFile ~/.ssh/id_rsa.pub

View File

@ -20,6 +20,7 @@
"modules-right": [
"tray",
"mpris",
"pulseaudio",
"network",
"group/hardware",
@ -109,5 +110,9 @@
},
"on-click": "pwvucontrol"
},
"mpris": {
"format": "{title} - {artist} ",
"format-paused": "{title} - {artist} "
}
}
}

View File

@ -39,6 +39,7 @@ tooltip {
#clock,
#workspaces,
#window,
#mpris,
#pulseaudio,
#network,
#tray,
@ -93,6 +94,10 @@ tooltip {
color: @gold;
}
#mpris {
color: @foam;
}
#pulseaudio {
color: @iris;
}

View File

@ -33,6 +33,7 @@ command_not_found_handler() {
#: Aliases {{{
alias vi='nvim'
alias vim='nvim'
alias ssh='kitten ssh'
alias sudo='sudo '
@ -45,7 +46,9 @@ alias dotfiles='nvim +"cd $HOME/.dotfiles" +"NvimTreeFocus"'
export PATH="$PATH:.:$HOME/.local/bin/scripts/:$HOME/.local/bin/"
export EDITOR='nvim'
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
export GPG_TTY="$(tty)"
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
gpgconf --launch gpg-agent # I need to find better place for this line
#: }}}