|
@@ -1,6 +1,6 @@
|
|
|
---
|
|
|
- name: install neovim
|
|
|
- pacman: name=neovim state=present
|
|
|
+ apt: name=neovim state=present
|
|
|
tags: neovim
|
|
|
become: true
|
|
|
|
|
@@ -18,7 +18,7 @@
|
|
|
become: true
|
|
|
|
|
|
- name: install zsh shell
|
|
|
- pacman: name=zsh state=present
|
|
|
+ apt: name=zsh state=present
|
|
|
tags: zsh
|
|
|
become: true
|
|
|
|
|
@@ -39,85 +39,22 @@
|
|
|
async: 10
|
|
|
poll: 1
|
|
|
|
|
|
-#- name: google chrome
|
|
|
- #shell: |
|
|
|
- #cd ~/Downloads && git clone https://aur.archlinux.org/google-chrome.git && cd google-chrome && makepkg -s
|
|
|
-
|
|
|
-- name: install google chrome
|
|
|
- shell: cd /home/logicp/Downloads/google-chrome && pacman -U --noconfirm google-chrome*.pkg.tar.xz
|
|
|
- become: true
|
|
|
-
|
|
|
- name: neovim plug
|
|
|
shell: |
|
|
|
curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
|
|
|
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
|
|
|
|
|
-- name: install nodejs
|
|
|
- pacman: name=nodejs state=present
|
|
|
- become: true
|
|
|
-
|
|
|
-- name: install npm
|
|
|
- pacman: name=npm state=present
|
|
|
- become: true
|
|
|
-
|
|
|
-- name: install virtualbox
|
|
|
- pacman: name=virtualbox state=present
|
|
|
- become: true
|
|
|
-
|
|
|
-- name: install vagrant
|
|
|
- pacman: name=vagrant state=present
|
|
|
+- name: install postgres
|
|
|
+ apt: name=postgresql state=present
|
|
|
become: true
|
|
|
|
|
|
-- name: install ruby
|
|
|
- pacman: name=ruby state=present
|
|
|
+- name: install libpq
|
|
|
+ apt: name=libpq-dev state=present
|
|
|
become: true
|
|
|
|
|
|
-- name: install ctags
|
|
|
- pacman: name=ctags state=present
|
|
|
+- name: install libpqxx
|
|
|
+ apt: name=libpqxx-dev state=present
|
|
|
become: true
|
|
|
|
|
|
-- name: install locate
|
|
|
- pacman: name=mlocate state=present
|
|
|
- become: true
|
|
|
-
|
|
|
-- name: install yarn
|
|
|
- shell: curl -o- -L https://yarnpkg.com/install.sh | bash
|
|
|
- tags: yarn
|
|
|
-
|
|
|
-- name: Download VSCode
|
|
|
- shell: wget -o /home/logicp/Downloads/vscode.tar.gz https://go.microsoft.com/fwlink/?LinkID=620884
|
|
|
- tags: VSCode
|
|
|
-
|
|
|
-- name: Uncompress VSCode
|
|
|
- shell: |
|
|
|
- cd /home/logicp/Downloads && tar zxvf vscode.tar.gz
|
|
|
-
|
|
|
-- name: Install VSCode
|
|
|
- shell: |
|
|
|
- mv /home/logicp/Downloads/VSCode-linux-x64 /opt
|
|
|
- become: true
|
|
|
-
|
|
|
-- name: Download IntelliJ Community
|
|
|
- get_url:
|
|
|
- url: http://
|
|
|
- dest: /home/logicp/Downloads/intellij-ce.tar.gz
|
|
|
-
|
|
|
-- name: Unpack and Install IntelliJ
|
|
|
- shell: |
|
|
|
- tar zxvf /home/logicp/Downloads/intellij-ce.tar.gz || mv /home/logicp/Download/idea-IC* /opt/idea-IC
|
|
|
- become: true
|
|
|
-
|
|
|
-- name: Clone and install slack
|
|
|
- shell: |
|
|
|
- cd /home/logicp/Downloads && git clone https://aur.archlinux.org/slack-desktop.git && \
|
|
|
- cd slack-desktop && makepkg -s && pacman -U slack-desktop-*x86_64.pkg.tar.xz
|
|
|
-
|
|
|
-- name: Download Telegram
|
|
|
- get_url:
|
|
|
- url: https://github.com/telegramdesktop/tdesktop/releases/download/v1.7.8/tsetup.1.7.8.beta.tar.xz
|
|
|
- dest: /home/logicp/Downloads/tsetup.xz
|
|
|
-
|
|
|
-- name: Unpack Telegram
|
|
|
- shell: cd /home/logicp/Downloads && tar xvf tsetup.xz
|
|
|
|
|
|
|