]> git.armaanb.net Git - config.org.git/blobdiff - config.org
Remove annoying ligature
[config.org.git] / config.org
index 13bafc5cee5a034e4e0bbdbab4982838300354ce..63ca6ff178b99b4fded0502109678d60feb8f6cc 100644 (file)
@@ -57,6 +57,13 @@ Its fine to set this here because I run Emacs in daemon mode, but if I were not,
         modus-themes-diffs 'desaturated)
   (load-theme 'modus-vivendi t)
 #+end_src
+** Tree-sitter
+#+begin_src emacs-lisp
+  (use-package tree-sitter-langs)
+  (use-package tree-sitter
+    :config (global-tree-sitter-mode)
+    :hook (tree-sitter-after-on-hook . tree-sitter-hl-mode))
+#+end_src
 ** Typography
 *** Font
 Great programming font with ligatures.
@@ -79,9 +86,9 @@ Great programming font with ligatures.
        "!!" "!=" ">]" ">:" ">>-" ">>=" ">=>" ">>>" ">-" ">=" "&&&"
        "&&" "|||>" "||>" "|>" "|]" "|}" "|=>" "|->" "|=" "||-" "|-"
        "||=" "||" ".." ".?" ".=" ".-" "..<" "..." "+++" "+>" "++"
-       "[||]" "[<" "[|" "{|" "??" "?." "?=" "?:" "##" "###" "####"
-       "#[" "#{" "#=" "#!" "#:" "#_(" "#_" "#?" "#(" ";;" "_|_" "__"
-       "~~" "~~>" "~>" "~-" "~@" "$>" "^=" "]#"))
+       "[||]" "[<" "[|" "{|" "?." "?=" "?:" "##" "###" "####" "#["
+       "#{" "#=" "#!" "#:" "#_(" "#_" "#?" "#(" ";;" "_|_" "__" "~~"
+       "~~>" "~>" "~-" "~@" "$>" "^=" "]#"))
     (global-ligature-mode t))
 #+end_src
 *** Emoji
@@ -290,8 +297,8 @@ Add back C-a/C-x
     (add-to-list 'org-structure-template-alist '("pi" . "src conf :tangle ~/.config/picom/picom.conf"))
     (add-to-list 'org-structure-template-alist '("git" . "src conf :tangle ~/.gitconfig"))
     (add-to-list 'org-structure-template-alist '("du" . "src conf :tangle ~/.config/dunst/dunstrc"))
-    (add-to-list 'org-structure-template-alist '("ro" . "src plain :tangle ~/.config/rofi/config.rasi"))
-    (add-to-list 'org-structure-template-alist '("za" . "src plain :tangle ~/.config/zathura/zathurarc")))
+    (add-to-list 'org-structure-template-alist '("ro" . "src javascript :tangle ~/.config/rofi/config.rasi"))
+    (add-to-list 'org-structure-template-alist '("za" . "src conf :tangle ~/.config/zathura/zathurarc")))
 #+end_src
 ** Presentations
 #+begin_src emacs-lisp
@@ -833,21 +840,15 @@ No more clogging up init.el.
 **** Programs
 #+begin_src conf :tangle ~/.spectrwm.conf
   program[aerc] = alacritty -e aerc
-  program[weechat] = alacritty --hold -e sh -c "while : ; do ssh -p 23 -t root@armaanb.net tmux attach-session -t weechat; sleep 2; done"
-  program[catgirl] = alacritty --hold -e sh -c "while : ; do ssh -p 23 -t root@armaanb.net tmux attach-session -t catgirl; sleep 2; done"
+  program[catgirl] = alacritty --hold -e sh -c "while : ; do ssh root@armaanb.net -t abduco -A irc catgirl freenode; sleep 2; done"
   program[emacs] = emacsclient -c
-  program[emacs-anywhere] = emacsclient --eval "(emacs-everywhere)"
   program[firefox] = firefox
-  program[thunderbird] = thunderbird
-  program[slack] = slack
+  program[emacs-anywhere] = emacsclient --eval "(emacs-everywhere)"
 
   bind[aerc] = MOD+Control+1
-  # bind[weechat] = MOD+Control+2
   bind[catgirl] = MOD+Control+2
-  bind[emacs-anywhere] = MOD+Control+3
-  bind[firefox] = MOD+Control+4
-  bind[thunderbird] = MOD+Control+5
-  bind[slack] = MOD+Control+6
+  bind[firefox] = MOD+Control+3
+  bind[emacs-anywhere] = MOD+Control+4
   bind[emacs] = MOD+Control+Return
 #+end_src
 ** Zsh
@@ -881,14 +882,14 @@ No more clogging up init.el.
   setopt hist_ignore_dups
   setopt hist_reduce_blanks
 
-  HISTSIZE=10000
-  SAVEHIST=10000
+  HISTSIZE=100000
+  SAVEHIST=100000
   HISTFILE=~/.local/share/zsh/history
 #+end_src
 *** Plugins
 I manage plugins using my own plugin manager, ZPE. https://git.sr.ht/~armaan/zpe
 **** ZPE
-#+begin_src plain :tangle ~/.config/zpe/repositories
+#+begin_src conf :tangle ~/.config/zpe/repositories
     https://github.com/Aloxaf/fzf-tab
     https://github.com/zdharma/fast-syntax-highlighting
     https://github.com/rupa/z
@@ -974,19 +975,19 @@ I manage plugins using my own plugin manager, ZPE. https://git.sr.ht/~armaan/zpe
 #+begin_src shell :tangle ~/.config/zsh/zshrc
   chpwd() {
       emulate -L zsh
-      exa -h --icons --git --group-directories-first
+      exa -lh --icons --git --group-directories-first
   }
 #+end_src
 **** Change default enter behavior
 If no command given, =ls=, if in a Git repo, =git status= as well.
 #+begin_src shell :tangle ~/.config/zsh/zshrc
   acheam-accept-line () {
+      zle accept-line
       if [ ${#${(z)BUFFER}} -eq 0 ]; then
           echo
-          [ git rev-parse --git-dir > /dev/null 2>&1 ] && git status
-          exa -h --icons --git --group-directories-first
+          exa -lh --icons --git --group-directories-first
+          [ -d ".git" ] && git status
       fi
-      zle accept-line
   }
   zle -N acheam-accept-line
   bindkey '^M' acheam-accept-line
@@ -1024,12 +1025,20 @@ If no command given, =ls=, if in a Git repo, =git status= as well.
       mv $1.tmp $2
   }
 #+end_src
+**** Finger
+#+begin_src shell :tangle ~/.config/zsh/zshrc
+  finger() {
+      user=$(echo "$1" | cut -f 1 -d '@')
+      host=$(echo "$1" | cut -f 2 -d '@')
+      echo $user | nc "$host" 79 -N
+  }
+#+end_src
 *** Aliases
 **** SSH
 #+begin_src shell :tangle ~/.config/zsh/zshrc
   alias bhoji-drop='ssh -p 23 root@armaanb.net'
-  alias weechat='ssh -p 23 -t root@armaanb.net tmux attach-session -t weechat'
-  alias catgirl='ssh -p 23 -t root@armaanb.net tmux attach-session -t catgirl'
+  alias catgirl='ssh root@armaanb.net -t abduco -A irc catgirl freenode'
+  alias union='ssh 192.168.1.18'
   alias tcf='ssh root@204.48.23.68'
   alias ngmun='ssh root@157.245.89.25'
   alias prox='ssh root@192.168.1.224'
@@ -1050,6 +1059,7 @@ If no command given, =ls=, if in a Git repo, =git status= as well.
   alias mv='mv -iv'
   alias ln='ln -iv'
   alias grep='grep -in --exclude-dir=.git --color=auto'
+  alias fname='find -name'
   alias mkdir='mkdir -pv'
   alias unar='atool -x'
   alias wget='wget -e robots=off'
@@ -1085,11 +1095,11 @@ If no command given, =ls=, if in a Git repo, =git status= as well.
   alias cip='curl https://armaanb.net/ip'
   alias gps='gpg --keyserver keyserver.ubuntu.com --search-keys'
   alias gpp='gpg --keyserver keyserver.ubuntu.com --recv-key'
-#+end_src
-**** Docker
-#+begin_src shell :tangle ~/.config/zsh/zshrc
-  alias dc='docker-compose'
-  alias dcdu='docker-compose down && docker-compose up -d'
+  alias plan='T=$(mktemp) && \
+        rsync root@armaanb.net:/etc/finger/plan.txt "$T" && \
+        vim $T && \
+        rsync "$T" root@armaanb.net:/etc/finger/plan.txt'
+  alias wttr='curl -s "wttr.in/02445?n" | head -n -3'
 #+end_src
 **** Other
 #+begin_src shell :tangle ~/.config/zsh/zshrc
@@ -1158,6 +1168,11 @@ If no command given, =ls=, if in a Git repo, =git status= as well.
   alias reflect='reflector --verbose --sort rate --save \
      ~/.local/etc/pacman.d/mirrorlist --download-timeout 60' # Takes ~45m to run
 #+end_src
+**** Package management (KISS)
+#+begin_src shell :tangle ~/.config/zsh/zshrc
+  alias kzf="kiss s \* | xargs -l basename | \
+    fzf --preview 'kiss search {} | xargs -l dirname'"
+#+end_src
 *** Exports
 #+begin_src shell :tangle ~/.config/zsh/zshrc
   export EDITOR="emacsclient -c"
@@ -1182,7 +1197,7 @@ If no command given, =ls=, if in a Git repo, =git status= as well.
   export LC_CTYPE="en_US.UTF-8"
   export LANGUAGE="en_US.UTF-8"
 
-  export KISS_PATH="/home/armaa/kiss/home/armaa/kiss-repo"
+  export KISS_PATH="/home/armaa/Virtual/kiss/home/armaa/kiss-repo"
   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/core"
   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/extra"
   export KISS_PATH="$KISS_PATH:/home/armaa/Clone/repo-main/xorg"
@@ -1294,7 +1309,7 @@ Make MPV play a little bit smoother.
 #+end_src
 ** Inputrc
 For any GNU Readline programs
-#+begin_src plain :tangle ~/.inputrc
+#+begin_src conf :tangle ~/.inputrc
   set editing-mode vi
 #+end_src
 ** Git
@@ -1408,40 +1423,40 @@ Lightweight notification daemon.
 #+end_src
 ** Rofi
 Modus vivendi theme that extends DarkBlue.
-#+begin_src plain :tangle ~/.config/rofi/config.rasi
-@import "/usr/share/rofi/themes/DarkBlue.rasi"
- * {
-    white:                        rgba ( 255, 255, 255, 100 % );
-    foreground:                   @white;
-    selected-normal-background:   @white;
-    separatorcolor:               @white;
-    background:                   rgba ( 34, 34, 34, 100 % );
-}
+#+begin_src javascript :tangle ~/.config/rofi/config.rasi
+  @import "/usr/share/rofi/themes/DarkBlue.rasi"
     ,* {
+          white:                        rgba ( 255, 255, 255, 100 % );
+          foreground:                   @white;
+          selected-normal-background:   @white;
+          separatorcolor:               @white;
+          background:                   rgba ( 34, 34, 34, 100 % );
+      }
 
-window {
-    border: 3;
-}
+  window {
+      border: 3;
+  }
 #+end_src
 ** Zathura
 *** Options
-#+begin_src plain :tangle ~/.config/zathura/zathurarc
-map <C-i> recolor
-map <A-b> toggle_statusbar
-set selection-clipboard clipboard
-set scroll-step 200
+#+begin_src conf :tangle ~/.config/zathura/zathurarc
+  map <C-i> recolor
+  map <A-b> toggle_statusbar
+  set selection-clipboard clipboard
+  set scroll-step 200
 
-set window-title-basename "true"
-set selection-clipboard "clipboard"
+  set window-title-basename "true"
+  set selection-clipboard "clipboard"
 #+end_src
 *** Colors
-#+begin_src plain :tangle ~/.config/zathura/zathurarc
-set default-bg         "#000000"
-set default-fg         "#ffffff"
-set render-loading     true
-set render-loading-bg  "#000000"
-set render-loading-fg  "#ffffff"
+#+begin_src conf :tangle ~/.config/zathura/zathurarc
+  set default-bg         "#000000"
+  set default-fg         "#ffffff"
+  set render-loading     true
+  set render-loading-bg  "#000000"
+  set render-loading-fg  "#ffffff"
 
-set recolor-lightcolor "#000000" # bg
-set recolor-darkcolor  "#ffffff" # fg
-set recolor            "true"
+  set recolor-lightcolor "#000000" # bg
+  set recolor-darkcolor  "#ffffff" # fg
+  set recolor            "true"
 #+end_src