-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstall.sh
More file actions
68 lines (50 loc) · 2.16 KB
/
install.sh
File metadata and controls
68 lines (50 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/bin/sh
sudo dnf install -y vim vim-X11 vifm vimiv-qt tmux emacs
# sudo dnf install -y wmctrl xdotool xclip xrandr
sudo dnf install -y exa fd-find ripgrep direnv mc
sudo dnf install -y yakuake
sudo dnf group install -y "Development Tools"
sudo dnf install -y postgresql-devel
# install Yarn and Node.js
sudo dnf module install -y nodejs:8
curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
sudo dnf install -y yarn
# Tern is a stand-alone, editor-independent JavaScript analyzer that can be used
# to improve the JavaScript integration of existing editors.
# used by spacemacs
sudo npm install -g tern
# rpm-fusion packages
sudo dnf install telegram-desktop
cd ~/dotfiles || exit
ln -sf dotfiles/vimrc ~/.vimrc
ln -sf dotfiles/_spacemacs ~/.spacemacs
ln -sf dotfiles/spacemacs ~/spacemacs
git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d
git clone https://github.com/artempyanykh/evil-russian.git ~/.emacs.d/layers/private/evil-russian
ln -sf dotfiles/vimperatorrc ~/.vimperatorrc
ln -sf dotfiles/bash_profile ~/.bash_profile
ln -sf dotfiles/bash_aliases ~/.bash_aliases
ln -sf dotfiles/bashrc ~/.bashrc
# sets vi mode for command line
ln -sf dotfiles/inputrc ~/.inputrc
ln -sf dotfiles/tmux.conf ~/.tmux.conf
ln -sf dotfiles/ctags ~/.ctags
ln -sf dotfiles/gitconfig ~/.gitconfig
ln -sf dotfiles/global-gitignore ~/.gitignore
ln -sf dotfiles/bin ~/.bin
ln -sf dotfiles/pryrc ~/.pryrc
ln -sf dotfiles/spring.rb ~/.spring.rb
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
# Download Vim Plugin Manager
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
vim -c "PlugInstall" -c "qa!"
git submodule update --init
ln -sf ~/dotfiles/colorschemes/gruvbox-contrib/konsole/Gruvbox_dark.colorscheme ~/.local/share/konsole/Gruvbox_dark.colorscheme
ln -sf ~/dotfiles/colorschemes/gruvbox-contrib/xresources/gruvbox-dark.xresources ~/.Xresources
rm -rf ~/.config/vifm/colors
git clone https://github.com/vifm/vifm-colors ~/.config/vifm/color
# git clone https://github.com/soimort/translate-shell
# cd translate-shell/
# make PREFIX=~/.local install
cd