|
|
@@ -1,3 +1,27 @@
|
|
1
|
1
|
# dev-config
|
|
2
|
2
|
|
|
3
|
|
-This is my personal development environment configuration, everything you need when you have a fresh install of (arch) linux.
|
|
|
3
|
+This repo contains files and instructions I use/need to setup my development environment. This all is used with Manjaro.
|
|
|
4
|
+
|
|
|
5
|
+update your system first with: `sudo pacman -Syu`
|
|
|
6
|
+
|
|
|
7
|
+Install yaourt using `sudo pacman -S base-devel yaourt`
|
|
|
8
|
+
|
|
|
9
|
+If a yaourt install fails make sure `sudo pacman -S base-devel` is installed correctly
|
|
|
10
|
+
|
|
|
11
|
+`sudo pacman -S vim`
|
|
|
12
|
+Set up vim install `git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim` and install the plugins in the vimrc using `vim +PluginInstall +qall`
|
|
|
13
|
+
|
|
|
14
|
+Make sure only jdk8-openjdk is installed and set as default using `sudo archlinux-java set java-8-openjdk`.
|
|
|
15
|
+
|
|
|
16
|
+Applications to install:
|
|
|
17
|
+
|
|
|
18
|
+```
|
|
|
19
|
+sudo pacman -S terminator
|
|
|
20
|
+sudo pacman -S chromium
|
|
|
21
|
+yaourt -S visual-studio-code-bin
|
|
|
22
|
+yaourt -S gitkraken
|
|
|
23
|
+yaourt -S firefox-developer-edition
|
|
|
24
|
+yaourt -S postman
|
|
|
25
|
+yaourt -S android-studio
|
|
|
26
|
+
|
|
|
27
|
+```
|