alias nmaplocal='nmap -sn 192.168.1.0/24'
alias refreshusb='udevadm control --reload-rules'
alias vpnup='nmcli connection up pinovpn'
+# connect to wifi
+# nmcli device wifi connect WIFI_NAME password PASSWORD
source fzfutil
\mathbb{N}
endsnippet
+snippet matrix "Set of Matricies" w
+\mathbb{M}_{$1}($2)$0
+endsnippet
+
# OTHERS
snippet implies "Implies" w
\mathrm{cis}($1)
endsnippet
+snippet ... "elpises" iA
+\ldots
+endsnippet
+
+# text
snippet span "Span" w
\text{span}($0)
endsnippet
+snippet col "Col" w
+\text{Col}($0)
+endsnippet
+
+snippet row "Row" w
+\text{Row}($0)
+endsnippet
+
+snippet rank "Rank" w
+\text{Rank}($0)
+endsnippet
+
+snippet nullity "Nullity" w
+\text{Nullity}($0)
+endsnippet
snippet eea "Extended Euclidian Algorithm" w
\begin{center}
--- /dev/null
+
+snippet entity "Entity" w
+Entity $1 is port
+(
+ $0
+)
+end Entity;
+endsnippet
set nrformats+=alpha "inc/dec alpha
set hidden
+" cursors depending on mode
+let &t_EI = "\<Esc>[2 q" "normal mode
+let &t_SI = "\<Esc>[6 q" "insert mode
+let &t_SR = "\<Esc>[4 q" "replace mode
+
" spell check
setlocal spell
set spelllang=en_us
# This is a simple launcher script for Taskell
boards_path="$HOME/.config/taskell/boards/"
-
-#also look into autocomplete and pressing esc to quit this script
-# todo: check to see if name is taken, also append .md
-
(
cd "$boards_path"
- board="new_board"
- mode=$(printf "o\nn" | dmenu -i -p "Open board (O) or create new board (N)?")
-
- [ $mode = "n" ] && board=$(dmenu -p "Choose a name for the board") || \
- [ $mode = "o" ] && board=$(ls -1 | dmenu -i -p "Choose board to open")
-
+ board=$(ls -1 | dmenu -i -p "Choose board to open")
[ -z "$board" ] && exit 1
st -e taskell "$board"