reorder install, install vim theme
This commit is contained in:
parent
0f4f35e21c
commit
cb6f92d6f2
@ -2,7 +2,7 @@ syntax on
|
|||||||
" Convert tabs to spaces
|
" Convert tabs to spaces
|
||||||
set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab
|
set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab
|
||||||
|
|
||||||
colorscheme torte
|
colorscheme iceberg
|
||||||
|
|
||||||
" Show tabs as arrows, and trailing whitespace as pips
|
" Show tabs as arrows, and trailing whitespace as pips
|
||||||
set list
|
set list
|
||||||
|
14
install.sh
14
install.sh
@ -73,6 +73,10 @@ echo "Linking config and local files"
|
|||||||
symlink $basedir/home/.local $HOME/.local
|
symlink $basedir/home/.local $HOME/.local
|
||||||
symlink $basedir/home/.config $HOME/.config
|
symlink $basedir/home/.config $HOME/.config
|
||||||
|
|
||||||
|
echo "Installing Oh-My-ZSH"
|
||||||
|
echo "When the install is done, type \"exit\" to continue installing dotfiles"
|
||||||
|
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
|
||||||
|
|
||||||
echo "Building i3 configuration"
|
echo "Building i3 configuration"
|
||||||
$basedir/bin/build-i3-config
|
$basedir/bin/build-i3-config
|
||||||
|
|
||||||
@ -105,6 +109,12 @@ echo "Installing VIM Sensible..."
|
|||||||
cd $HOME/.vim/bundle
|
cd $HOME/.vim/bundle
|
||||||
git clone git://github.com/tpope/vim-sensible.git
|
git clone git://github.com/tpope/vim-sensible.git
|
||||||
|
|
||||||
|
echo "Installing VIM Iceberg theme"
|
||||||
|
cd /tmp
|
||||||
|
wget https://www.vim.org/scripts/download_script.php?src_id=25718 -O iceberg.zip
|
||||||
|
unzip iceberg.zip
|
||||||
|
cp -r iceberg.vim/{autoload,colors} ~/.vim/
|
||||||
|
|
||||||
echo "Adding user bin..."
|
echo "Adding user bin..."
|
||||||
mkdir -p $bindir
|
mkdir -p $bindir
|
||||||
for file_path in $basedir/bin/*; do
|
for file_path in $basedir/bin/*; do
|
||||||
@ -114,10 +124,6 @@ done
|
|||||||
echo "Changing default shell to ZSH..."
|
echo "Changing default shell to ZSH..."
|
||||||
chsh -s /usr/bin/zsh
|
chsh -s /usr/bin/zsh
|
||||||
|
|
||||||
echo "Installing Oh-My-ZSH"
|
|
||||||
echo "When the install is done, type `exit` to continue installing dotfiles"
|
|
||||||
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
|
|
||||||
|
|
||||||
if [ -e "$postinst" ]; then
|
if [ -e "$postinst" ]; then
|
||||||
echo "Running post install..."
|
echo "Running post install..."
|
||||||
source "$postinst"
|
source "$postinst"
|
||||||
|
Loading…
Reference in New Issue
Block a user