From f980275846fc14125a1380330bb354353e007c58 Mon Sep 17 00:00:00 2001 From: d3adb5 Date: Wed, 24 Jul 2024 15:14:52 -0700 Subject: [PATCH 1/3] feat(nvim): setup ltex language server Set up an LSP for LaTeX and derived TeX dialects. --- neovim/lua/completion.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/neovim/lua/completion.lua b/neovim/lua/completion.lua index d8327b9..458446f 100644 --- a/neovim/lua/completion.lua +++ b/neovim/lua/completion.lua @@ -35,3 +35,4 @@ lsp.gopls.setup({ on_attach = on_attach, capabilities = cap }) lsp.clangd.setup({ on_attach = on_attach, capabilities = cap }) lsp.helm_ls.setup({ on_attach = on_attach, capabilities = cap }) lsp.bashls.setup({ on_attach = on_attach, capabilities = cap }) +lsp.ltex.setup({ on_attach = on_attach, capabilities = cap }) From ede3b1a9c77fefc40e8d52fe27e729901a0fdb4c Mon Sep 17 00:00:00 2001 From: d3adb5 Date: Wed, 24 Jul 2024 15:15:39 -0700 Subject: [PATCH 2/3] feat(zsh): ensure .local/bin is used first Ensure binaries from .local/bin have precedence in the PATH over those in other PATH directories. --- zsh/conf.d/00-environment.zsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/conf.d/00-environment.zsh b/zsh/conf.d/00-environment.zsh index a228602..04e10e1 100644 --- a/zsh/conf.d/00-environment.zsh +++ b/zsh/conf.d/00-environment.zsh @@ -43,3 +43,6 @@ path+=( ) export PATH + +# Make sure ~/.local/bin precedes everything else in PATH. +export PATH="$HOME/.local/bin:$PATH" From c314247bb2691708c29cbddeafecbce6eedf6817 Mon Sep 17 00:00:00 2001 From: d3adb5 Date: Wed, 24 Jul 2024 15:16:29 -0700 Subject: [PATCH 3/3] feat(xmobar): add deadd-notification-center toggle Add a toggle for the Deadd Notification Center. This is still being experimented with. --- icons/notification.xpm | 21 +++++++++++++++++++++ stalonetray/stalonetrayrc | 4 +--- xmobar/xmobarrc | 7 +++++-- 3 files changed, 27 insertions(+), 5 deletions(-) create mode 100644 icons/notification.xpm diff --git a/icons/notification.xpm b/icons/notification.xpm new file mode 100644 index 0000000..c38c357 --- /dev/null +++ b/icons/notification.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char * notification_xpm[] = { +"13 16 2 1", +" c #1D1F21", +". c #C5C8C6", +" ", +".............", +".............", +".. ..", +".............", +".. ..", +".............", +".. ..", +".............", +".............", +" .... ", +" ... ", +" .. ", +" ", +" ", +" "}; diff --git a/stalonetray/stalonetrayrc b/stalonetray/stalonetrayrc index d8c917c..c2ce4d7 100644 --- a/stalonetray/stalonetrayrc +++ b/stalonetray/stalonetrayrc @@ -1,5 +1,5 @@ icon_size 16 -geometry 1x1-171+1 +geometry 1x1-205+1 max_geometry 0x0 background "#1d1f21" @@ -23,5 +23,3 @@ window_layer normal window_strut auto window_type dock xsync false - -ignore_classes fcitx diff --git a/xmobar/xmobarrc b/xmobar/xmobarrc index 891e115..54dada9 100644 --- a/xmobar/xmobarrc +++ b/xmobar/xmobarrc @@ -28,8 +28,11 @@ Config \ %memory% \ \ \ \}%UnsafeStdinReader%{ \ - \\ - \ %date% " + \ \ + \ %date% \ + \ \ + \\ + \ " } -- vim: set filetype=haskell syntax=haskell :