Browse Source

small change to bashrc and emacs.d

Taylor Bockman 4 years ago
parent
commit
631bc3622a
  1. 2
      dotfiles/bash/bashrc
  2. 3
      dotfiles/emacs.d/init.el

2
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

3
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)

Loading…
Cancel
Save