This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 2 - Packages | |
" 2.1 - Apparence | |
NeoBundle 'morhetz/gruvbox' | |
" Just for term with 256 colors support | |
NeoBundle 'godlygeek/csapprox.git' | |
NeoBundle 'skwp/vim-colors-solarized' | |
NeoBundle 'chrisbra/color_highlight.git' | |
" 2.2 - Git | |
NeoBundle 'tpope/vim-git' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Enable powerline fonts | |
let g:airline_powerline_fonts = 1 | |
" 3.2 - NERDTree | |
let NERDTreeMinimalUI = 1 | |
let NERDTreeDirArrows = 1 | |
let g:NERDTreeWinSize = 30 | |
let g:NERDTreeShowBookmarks=1 | |
" 3.3 - NERDTree Tabs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"***************************************************************************** | |
"" NeoBundle core | |
"***************************************************************************** | |
if has('vim_starting') | |
set nocompatible " Be iMproved | |
" Required: | |
set runtimepath+=~/.vim/bundle/neobundle.vim/ | |
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install phpPgAdmin | |
sudo dnf install phpPgAdmin | |
# start apache2 service | |
sudo systemctl start apache2 | |
# access phpPgAdmin on browser | |
http://localhost/phpPgAdmin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install latest postgresql | |
sudo yum install postgresql-server postgresql-contrib | |
# start postgresql | |
sudo systemctl start postgresql | |
# change postgres user password | |
sudo passwd postgres | |
# create a database and create a new user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install PHP | |
sudo zypper install php5 php5-gd php5-mcrypt php5-pear php5-mysql php5-pgsql php5-gd php-xml php5-mbstring php5-openssl php5-phar php5-fileinfo | |
# install composer | |
curl -sS https://getcomposer.org/installer | php | |
sudo mv composer.phar /usr/local/bin/composer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# fonts | |
## solve Terminess Font problem on Ubuntu | |
## https://github.com/powerline/fonts/pull/79#issuecomment-64906357 | |
https://github.com/powerline/fonts | |
http://larsenwork.com/monoid/ | |
# color-scheme | |
## dark | |
http://vimcolors.com/289/onedark/dark | |
https://github.com/zenorocha/dracula-theme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# installation list: | |
## rpmfusion repo | |
## vim, tmux, zsh, ack, npm, vlc, gimp, inkscape | |
## spotify-client | |
## flash plugin | |
## synaptic driver | |
# install rpm fusion repo | |
su -c 'dnf install --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########################### | |
# Configuration | |
########################### | |
# use 256 term for pretty colors | |
set -g default-terminal "screen-256color" | |
# increase scroll-back history | |
set -g history-limit 5000 |
NewerOlder