From 631bc3622a7e58b7aa1f8dc8a6e80154f6fb2f28 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Wed, 15 Jan 2020 21:20:51 -0800 Subject: [PATCH] small change to bashrc and emacs.d --- dotfiles/bash/bashrc | 2 +- dotfiles/emacs.d/init.el | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dotfiles/bash/bashrc b/dotfiles/bash/bashrc index bec313d..cf8a812 100644 --- a/dotfiles/bash/bashrc +++ b/dotfiles/bash/bashrc @@ -141,7 +141,7 @@ export PROMPT_DIRTRIM=2 if [[ "$OSTYPE" == "linux-gnu" ]]; then # I had some rendering issues running in XFCE unless I added an extra space at the end. - export PS1='\[$bold\]\[$white\]\u@\h\[$reset\]: \[$bold\]\[$blue\]\w\[$reset\] \[$green\]$(parse_git_branch)\[$reset\]\[$bold\]\[$white\]⇨\[$reset\] ' + export PS1='\[$bold\]\[$white\]\u@\h\[$reset\]: \[$bold\]\[$blue\]\w\[$reset\] \[$green\]$(parse_git_branch)\[$reset\]\[$bold\]\[$white\]⇨\[$reset\] ' else export PS1='\[$bold\]\[$white\]\u@\h\[$reset\]: \[$bold\]\[$blue\]\w\[$reset\] \[$green\]$(parse_git_branch)\[$reset\]\[$bold\]\[$white\]⇨\[$reset\] ' fi diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 77b0252..ee61515 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -144,6 +144,9 @@ There are two things you can do about this warning: (ivy-mode 1) +;; Enable column numbers +(column-number-mode 1) + ;; Enable paredit for lisp (autoload 'enable-paredit-mode "paredit" "Turn on pseudo-structural editing of Lisp code." t) (add-hook 'emacs-lisp-mode-hook #'enable-paredit-mode)