196885c6b61b

Updates
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Wed, 11 Jul 2018 01:43:19 +0000
parents b86a3b6153f2
children 1f7fd4683ec5
branches/tags (none)
files bin/ecl bin/heading stumpwmrc vim/custom-dictionary.utf-8.add vim/vimrc

Changes

--- a/bin/ecl	Sun Jul 08 15:49:42 2018 +0000
+++ b/bin/ecl	Wed Jul 11 01:43:19 2018 +0000
@@ -1,3 +1,3 @@
 #!/usr/bin/env bash
 
-rlwrap-lisp /usr/local/bin/ecl "$@"
+rlwrap-lisp /usr/bin/ecl "$@"
--- a/bin/heading	Sun Jul 08 15:49:42 2018 +0000
+++ b/bin/heading	Wed Jul 11 01:43:19 2018 +0000
@@ -1,5 +1,5 @@
 #!/usr/bin/env bash
 
 echo
-figlet -kf $1 $2 | sed -Ee 's/ +$$//' | tr -s '\n' | lolcat --freq=0.25
+toilet -k -F metal:crop -f "$1" "$2"
 echo
--- a/stumpwmrc	Sun Jul 08 15:49:42 2018 +0000
+++ b/stumpwmrc	Wed Jul 11 01:43:19 2018 +0000
@@ -12,6 +12,7 @@
       *message-window-gravity* :center
       *input-window-gravity* :center
       *debug-level* 0
+      *resize-increment* 50
       *shell-program* "/bin/bash")
 
 
--- a/vim/custom-dictionary.utf-8.add	Sun Jul 08 15:49:42 2018 +0000
+++ b/vim/custom-dictionary.utf-8.add	Wed Jul 11 01:43:19 2018 +0000
@@ -221,3 +221,4 @@
 Macbook
 Topre
 Realforce
+Homebrew
--- a/vim/vimrc	Sun Jul 08 15:49:42 2018 +0000
+++ b/vim/vimrc	Wed Jul 11 01:43:19 2018 +0000
@@ -1608,6 +1608,15 @@
 augroup END
 
 " }}}
+" Prolog {{{
+
+augroup ft_prolog
+    au!
+
+    au BufNewFile,BufRead *.pl set filetype=prolog
+augroup END
+
+" }}}
 " Python {{{
 
 function! SelectTopLevelPythonHunk() "{{{