This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# gruvbox-dark colorscheme for kitty | |
# snazzy theme used as base | |
foreground #ebdbb2 | |
background #272727 | |
selection_foreground #655b53 | |
selection_background #ebdbb2 | |
url_color #d65c0d | |
# black |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(use-package circe | |
:config | |
(setq circe-network-options | |
(quote | |
(("freenode-znc" | |
:host "znc.example.com" | |
:use-tls t | |
:port 6697 | |
:user "zncusername/zncfreenode" ;; `zncfreenode` is freenode network name at your znc server | |
:pass "zncpassword") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Launches files based on their mimetypes | |
# Usage: launch [FILE...] | |
# Dependencies: file | |
case $(file --mime-type "$@" -bL) in | |
# Check for the mimetype of your file (This is POSIX regex) | |
video/* | audio/* | image/gif) | |
# Launch using your favorite application |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
format = """ | |
$username\ | |
$shlvl\ | |
$kubernetes\ | |
${custom.dir}\ | |
${custom.home_dir}\ | |
$directory\ | |
${custom.git_host}\ | |
$git_branch\ | |
$git_commit\ |
OlderNewer