Updated dotenv for VIM
This commit is contained in:
14
dotenv.sh
Normal file → Executable file
14
dotenv.sh
Normal file → Executable file
@ -14,5 +14,17 @@ if [ -f "/etc/arch-release" ]; then
|
|||||||
./scripts/install-arch.sh
|
./scripts/install-arch.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Debian set up
|
||||||
|
if [ -f "/etc/debian_version" ]; then
|
||||||
|
./scripts/install-debian.sh
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Node JS
|
||||||
./scripts/install-node.sh
|
./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
19
scripts/.vimrc
Normal 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
|
@ -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
5
scripts/install-arch.sh
Normal file → Executable file
@ -4,7 +4,4 @@
|
|||||||
sudo pacman -Syuu
|
sudo pacman -Syuu
|
||||||
|
|
||||||
# Install
|
# Install
|
||||||
sudo pacman -S vim code unrar base-devel vlc firefox cmake -q --noconfirm
|
sudo pacman -S vim code unrar base-devel vlc firefox cmake -q --noconfirm
|
||||||
|
|
||||||
# Configure GNOME
|
|
||||||
./configure-gnome.sh
|
|
8
scripts/install-debian.sh
Executable file
8
scripts/install-debian.sh
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Update
|
||||||
|
sudo apt update
|
||||||
|
sudo apt upgrade
|
||||||
|
|
||||||
|
# Install
|
||||||
|
sudo apt install build-essential unrar vim git cmake
|
@ -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
0
scripts/install-node.sh
Normal file → Executable file
Reference in New Issue
Block a user