commit f75db917cb0f6b1e899cee3c0c28b23a5c31c95e
Author: bsandro <email@bsandro.tech>
Date: Wed, 3 May 2023 23:44:00 +0300
init
Diffstat:
8 files changed, 85 insertions(+), 0 deletions(-)
diff --git a/.Xresources b/.Xresources
@@ -0,0 +1,7 @@
+Xft.dpi: 96
+Xft.antialias: true
+Xft.autohint: true
+Xft.hinting: true
+Xft.hintstyle: hintslight
+Xft.lcdfilter: lcddefault
+Xft.rgba: rgb
diff --git a/.asoundrc b/.asoundrc
@@ -0,0 +1,7 @@
+pcm.device{
+ format S24_LE
+ rate 96000
+ type hw
+ card 2
+ device 0
+}
diff --git a/.gitconfig b/.gitconfig
@@ -0,0 +1,14 @@
+[user]
+ name = bsandro
+ email = email@bsandro.tech
+ signingkey = 2AD712CC62485B11263A013463A6AB2C6BFBA7A7
+[commit]
+ gpgsign = true
+[pull]
+ rebase = false
+[alias]
+ slog = log --oneline --graph --all
+[init]
+ defaultBranch = master
+[color]
+ ui = false
diff --git a/.nano/go.nanorc b/.nano/go.nanorc
@@ -0,0 +1,23 @@
+syntax "GO" "\.go$"
+
+#color brightblue "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]"
+color brightblue "\<(append|cap|close|complex|copy|delete|imag|len)\>"
+color brightblue "\<(make|new|panic|print|println|protect|real|recover)\>"
+color green "\<(u?int(8|16|32|64)?|float(32|64)|complex(64|128))\>"
+color green "\<(uintptr|byte|rune|string|interface|bool|map|chan|error)\>"
+color cyan "\<(package|import|const|var|type|struct|func|go|defer|nil|iota)\>"
+color cyan "\<(for|range|if|else|case|default|switch|return)\>"
+color brightred "\<(go|goto|break|continue)\>"
+color brightcyan "\<(true|false)\>"
+#color red "[-+/*=<>!~%&|^]|:="
+#color blue "\<([0-9]+|0x[0-9a-fA-F]*)\>|'.'"
+color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'"
+#color magenta "\\[abfnrtv'\"\\]"
+#color magenta "\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})"
+#color yellow "`[^`]*`"
+color yellow start="`" end="`"
+color brightblack "(^|[[:space:]])//.*"
+color brightblack start="/\*" end="\*/"
+#color brightwhite,cyan "TODO:?"
+color ,green "[[:space:]]+$"
+#color ,red " + +| + +"
diff --git a/.nano/protobuf.nanorc b/.nano/protobuf.nanorc
@@ -0,0 +1,12 @@
+syntax "PROTOBUF" "\.proto"
+
+color green "\<(int32|int64|uint32|uint64|sint32|sint64|fixed32|fixed64|sfixed32|sfixed64|float|double|bool|string|bytes)\>"
+color cyan "\<(syntax|import|option|package|message|group|oneof|service|rpc|returns|extend)\>"
+color brightcyan "\<(optional|required|repeated)\>"
+color brightgreen "\<(default)\>"
+color blue "\<(true|false)\>"
+color yellow "\b[0-9]+\b"
+color brightyellow start="\"" end="\""
+color blue "\<(import)\>"
+color white start="\/\*" end="\*\/"
+color white "//.*"
diff --git a/.nanorc b/.nanorc
@@ -0,0 +1,15 @@
+include /usr/share/nano/*.nanorc
+include ~/.nano/*.nanorc
+set autoindent
+set linenumbers
+set mouse
+set smarthome
+set softwrap
+set tabsize 4
+#set tabstospaces
+set zap
+set multibuffer
+set constantshow
+set indicator
+set minibar
+set nohelp
diff --git a/.profile b/.profile
@@ -0,0 +1,4 @@
+export LC_ALL=en_US.UTF-8
+export PS1="[\u@\h \W]\$ "
+unset rc
+export GPG_TTY=$(tty)
diff --git a/.tmux.conf b/.tmux.conf
@@ -0,0 +1,3 @@
+set -g mouse on
+#set -g default-terminal "vt220"
+set-option -g repeat-time 0