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)