change of vim themes, addition of apt/dpkg package installers
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#!/bin/bash
|
||||
$GIT_URL="https://git.cusack.cloud/acid/dotfiles.git"
|
||||
GIT_URL="https://git.cusack.cloud/acid/dotfiles.git"
|
||||
git clone --bare $GIT_URL $HOME/.cfg
|
||||
function config {
|
||||
/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME $@
|
||||
|
||||
11
.config/install-scripts/003-packages.sh
Executable file
11
.config/install-scripts/003-packages.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
packages="htop neovim"
|
||||
|
||||
aptcommand="sudo apt-get"
|
||||
if [[ "$EUID" -eq 0 ]]; then
|
||||
aptcommand="apt-get"
|
||||
fi
|
||||
|
||||
$aptcommand update
|
||||
$aptcommand install -y $packages
|
||||
3
.config/install-scripts/004-vim.sh
Executable file
3
.config/install-scripts/004-vim.sh
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
||||
vim +PluginInstall +qall
|
||||
Reference in New Issue
Block a user