9af48fd636c1

More
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Wed, 02 Oct 2019 12:18:52 -0400
parents e39d33e4222c
children 4437ec2d751b e3f46c421f0e
branches/tags (none)
files pulse/daemon.conf skeletal_bashrc stumpwmrc vim/vimrc

Changes

--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pulse/daemon.conf	Wed Oct 02 12:18:52 2019 -0400
@@ -0,0 +1,1 @@
+flat-volumes=no
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/skeletal_bashrc	Wed Oct 02 12:18:52 2019 -0400
@@ -0,0 +1,46 @@
+if [ -f /etc/bashrc ]; then
+        . /etc/bashrc
+fi
+
+eval "$(dircolors -b ~/.dircolors)"
+
+D=$'\e[37m'
+PINK=$'\e[35m'
+GREEN=$'\e[32m'
+ORANGE=$'\e[33m'
+
+export PS1='\n${PINK}\u ${D}at ${ORANGE}\h ${D}in ${GREEN}\w${D}\n$ '
+
+alias nvim=vim
+alias ..="cd .."
+alias ...="cd ../.."
+alias ....="cd ../../.."
+alias g=git
+alias h=hg
+
+alias l1="tree --dirsfirst -ChFL 1"
+alias l2="tree --dirsfirst -ChFL 2"
+alias l3="tree --dirsfirst -ChFL 3"
+alias l4="tree --dirsfirst -ChFL 4"
+alias l5="tree --dirsfirst -ChFL 5"
+alias ll1="tree --dirsfirst -ChFupDaL 1"
+alias ll2="tree --dirsfirst -ChFupDaL 2"
+alias ll3="tree --dirsfirst -ChFupDaL 3"
+alias ll4="tree --dirsfirst -ChFupDaL 4"
+alias ll5="tree --dirsfirst -ChFupDaL 5"
+
+alias l=l1
+alias ll=ll1
+
+export PAGER=less
+
+shopt -s histappend
+HISTFILESIZE=100000
+HISTSIZE=100000
+HISTCONTROL=ignoreboth
+shopt -s cmdhist
+
+PROMPT_COMMAND='history -a'
+
+PATH=$PATH:$HOME/.local/bin:$HOME/bin
+export PATH
--- a/stumpwmrc	Mon Sep 23 11:50:16 2019 -0400
+++ b/stumpwmrc	Wed Oct 02 12:18:52 2019 -0400
@@ -491,6 +491,11 @@
   ("H-K" "move-window up")
   ("H-L" "move-window right")
 
+  ("H-1" "gmove 1")
+  ("H-2" "gmove 2")
+  ("H-3" "gmove 3")
+  ("H-4" "gmove 4")
+
   ("C-H-H" "exchange-direction left")
   ("C-H-J" "exchange-direction down")
   ("C-H-K" "exchange-direction up")
--- a/vim/vimrc	Mon Sep 23 11:50:16 2019 -0400
+++ b/vim/vimrc	Wed Oct 02 12:18:52 2019 -0400
@@ -1692,7 +1692,7 @@
     au Filetype markdown nnoremap <buffer> <localleader>3 mzI###<space><esc>`zllll
     au Filetype markdown nnoremap <buffer> <localleader>4 mzI####<space><esc>`zlllll
 
-    au Filetype markdown inoremap <buffer> <c-cr> <cr><esc>mz? *\*?e<cr>"zy0:noh<cr>`z"zpA* <esc>a
+    au Filetype markdown inoremap <buffer> <c-cr> <cr><esc>mz?^ *\*?e<cr>"zy0:noh<cr>`z"zpA* <esc>a
     au Filetype markdown inoremap <buffer> <s-tab> <esc>mz0xx`za
     au Filetype markdown inoremap <buffer> <c-tab> <esc>mzI  <esc>`zlla
 augroup END