Updated dotenv for VIM

This commit is contained in:
2021-12-09 00:45:58 -08:00
parent ef2e932dad
commit d6e95c8b00
7 changed files with 41 additions and 26 deletions

14
dotenv.sh Normal file → Executable file
View File

@ -14,5 +14,17 @@ if [ -f "/etc/arch-release" ]; then
./scripts/install-arch.sh
fi
# Debian set up
if [ -f "/etc/debian_version" ]; then
./scripts/install-debian.sh
fi
# Node JS
./scripts/install-node.sh
source ~/.nvm/nvm.sh
source ~/.nvm/nvm.sh
# Install VIM Settings
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
cp ./scripts/.vimrc ~/.vimrc
vim -c "PlugInstall"

19
scripts/.vimrc Normal file
View File

@ -0,0 +1,19 @@
call plug#begin('~/.vim/plugged')
Plug 'tpope/vim-sensible'
Plug 'blackbirdtheme/vim'
Plug 'sheerun/vim-polyglot'
Plug 'epmor/hotline-vim'
call plug#end()
" Rules
set tabstop=2
set et
%retab!
" Colors
syntax enable
set background=dark
set background=dark
colorscheme blackbird

View File

@ -1,14 +0,0 @@
#!/bin/bash
# Gnome Extensions
sudo pacman -S gnome-shell-extensions
# Flat Remix Theme
git clone https://github.com/daniruiz/Flat-Remix-GTK
sudo cp ./Flat-Remix-GTK/themes/* /usr/share/themes
# Iosevka SS09 Variant
sudo pacman -S ttc-iosevka-ss09
# Set theme
gsettings set org.gnome.desktop.interface gtk-theme "Flat-Remix-GTK-Violet-Dark-Solid"

5
scripts/install-arch.sh Normal file → Executable file
View File

@ -4,7 +4,4 @@
sudo pacman -Syuu
# Install
sudo pacman -S vim code unrar base-devel vlc firefox cmake -q --noconfirm
# Configure GNOME
./configure-gnome.sh
sudo pacman -S vim code unrar base-devel vlc firefox cmake -q --noconfirm

8
scripts/install-debian.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
# Update
sudo apt update
sudo apt upgrade
# Install
sudo apt install build-essential unrar vim git cmake

View File

@ -1,7 +0,0 @@
#!/bin/bash
sudo pacman -S lxqt xorg-server sddm
echo "exec startlxqt" >> ~/.xinitrc
sudo systemctl enable sddm.service
# Start
sudo systemctl start sddm.service

0
scripts/install-node.sh Normal file → Executable file
View File