From fea3047432c0a30e80b0794284385b3194e54fc7 Mon Sep 17 00:00:00 2001 From: Nathan Steel Date: Thu, 12 Aug 2021 12:14:58 +0100 Subject: [PATCH] Add forgotten additions to zshrc and vimrc - Add source to bashrc, and bash_aliases to zshrc - Add set hidden to vimrc to allow unsaved buffer switching --- .vimrc | 3 +++ .zshrc | 2 ++ 2 files changed, 5 insertions(+) diff --git a/.vimrc b/.vimrc index 573a66d..f4723e0 100644 --- a/.vimrc +++ b/.vimrc @@ -21,3 +21,6 @@ call matchadd('ColorColumn', '\%81v', 100) set path+=** " Search down subdirectories set wildmenu " Display all the matching files when tab completing +" File Management +set hidden " Allow switching between buffers without saving + diff --git a/.zshrc b/.zshrc index 60c6dc1..24fec28 100644 --- a/.zshrc +++ b/.zshrc @@ -4,6 +4,8 @@ export ZSH="/home/nathan/.oh-my-zsh" # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes ZSH_THEME="robbyrussell" +source ~/.bashrc +source ~/.bash_aliases # Uncomment the following line to use case-sensitive completion. # CASE_SENSITIVE="true"