mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-12-23 04:37:37 +00:00
Fixed compiling of Command T with RVM and fixed backspace in some instances
This commit is contained in:
parent
557290b093
commit
01137fcff0
@ -4,6 +4,11 @@
|
|||||||
############################
|
############################
|
||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
|
||||||
|
# Try to load .bashrc to load rvm functions
|
||||||
|
if [ -f ~/.bashrc ]; then
|
||||||
|
. ~/.bashrc
|
||||||
|
fi
|
||||||
|
|
||||||
# Get current directory for future use in links
|
# Get current directory for future use in links
|
||||||
VIM_SYNC_DIR=${PWD}
|
VIM_SYNC_DIR=${PWD}
|
||||||
|
|
||||||
|
@ -54,6 +54,8 @@ set tabstop=4
|
|||||||
set shiftwidth=4
|
set shiftwidth=4
|
||||||
set softtabstop=4
|
set softtabstop=4
|
||||||
set autoindent
|
set autoindent
|
||||||
|
"Ensure backspace actually works
|
||||||
|
set backspace=2
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
|
|
||||||
set virtualedit=onemore " allow for cursor beyond last character
|
set virtualedit=onemore " allow for cursor beyond last character
|
||||||
|
Loading…
Reference in New Issue
Block a user