dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 2d6c01b2703ceac86dae38d8ab84cf004f544e00
parent ff71518cd3c2d222fc9ffecc28c487fa4cbf2d05
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Sat, 23 Feb 2019 20:23:24 +0100

Change leader to space

Let's see how I feel about this in a while. So far it seems to be quite
nice.


Former-commit-id: 62e77596960a2d45e2799d0b9554a5928bdea795
Diffstat:
Mvim/map.vimrc | 2+-
Mvim/plugins.vimrc | 1+
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/vim/map.vimrc b/vim/map.vimrc @@ -1,4 +1,4 @@ -let mapleader="," " Set the mapleader to be , +let mapleader=" " " Set the mapleader to be , " So I don't have to mash shift all the time nnoremap ; : diff --git a/vim/plugins.vimrc b/vim/plugins.vimrc @@ -1,3 +1,4 @@ +" Install vim-plug if needed if empty(glob('~/.vim/autoload/plug.vim')) silent execute "!curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim" autocmd VimEnter * PlugInstall | source $MYVIMRC