misc changes - vim cursor
authorDaniel Liu <mr.picklepinosaur@gmail.com>
Wed, 31 Mar 2021 04:57:37 +0000 (00:57 -0400)
committerDaniel Liu <mr.picklepinosaur@gmail.com>
Wed, 31 Mar 2021 04:57:37 +0000 (00:57 -0400)
.bashrc
.vim/mysnippets/tex.snippets
.vim/mysnippets/vhdl.snippets [new file with mode: 0644]
.vimrc
Scripts/dmenu/Staskell

diff --git a/.bashrc b/.bashrc
index e08cc97..5c12176 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -44,6 +44,8 @@ alias darkmpv='mpv --vf=sub,lavfi="negate"'
 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
 
index 33cef93..6d68b16 100644 (file)
@@ -113,6 +113,10 @@ snippet naturals "Set of Naturals" w
 \mathbb{N}
 endsnippet
 
+snippet matrix "Set of Matricies" w
+\mathbb{M}_{$1}($2)$0
+endsnippet
+
 
 # OTHERS
 snippet implies "Implies" w
@@ -179,10 +183,30 @@ snippet cis "Cis" 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}
diff --git a/.vim/mysnippets/vhdl.snippets b/.vim/mysnippets/vhdl.snippets
new file mode 100644 (file)
index 0000000..843b408
--- /dev/null
@@ -0,0 +1,8 @@
+
+snippet entity "Entity" w
+Entity $1 is port  
+(
+       $0
+)
+end Entity;
+endsnippet
diff --git a/.vimrc b/.vimrc
index e68fc91..62c1fb4 100644 (file)
--- a/.vimrc
+++ b/.vimrc
@@ -18,6 +18,11 @@ set expandtab
 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
index d982d0b..edc6037 100755 (executable)
@@ -3,18 +3,9 @@
 # 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"