Skip to content

jayamorin/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotfiles

License: MIT

Personal collection of configuration files.

Jenkins (Ubuntu 17.04)

  1. Install Oracle Java JRE and JDK
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install java-common oracle-java8-installer
  1. Copy configuration file etc/systemd/system/jenkins.service to /etc/systemd/system/jenkins.service.

  2. Download jenkins.war file and copy to /opt/jenkins.

$ mkdir /opt/jenkins
$ curl -L http://mirrors.jenkins.io/war/latest/jenkins.war -o /opt/jenkins/jenkins.war
  1. Reload service manager
sudo systemctl daemon-reload
  1. Manage the service with:
sudo systemctl start jenkins
sudo systemctl stop jenkins
sudo systemctl restart jenkins
sudo systemctl enable jenkins

Vim (Ubuntu 17.04)

  1. Create directories
mkdir -p ~/.vim/backups
  1. Install Vim plugins

    pathogen

    mkdir -p ~/.vim/autoload ~/.vim/bundle
    curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
    

    NERD_tree

    cd ~/.vim/bundle
    git clone https://github.com/scrooloose/nerdtree.git
    

    airline

    cd ~/.vim/bundle
    git clone https://github.com/bling/vim-airline ~/.vim/bundle/vim-airline
    

    minibufexpl

    cd ~/.vim/bundle
    git clone https://github.com/fholgado/minibufexpl.vim
    

    python-mode

    cd ~/.vim/bundle
    git clone https://github.com/klen/python-mode
    

    vim-colorschemes

    git clone https://github.com/flazz/vim-colorschemes.git /tmp/vim-colorschemes
    mv /tmp/vim-colorschemes/colors ~/.vim/
    

    nerdtree-git-plugin

    cd ~/.vim/bundle
    git clone https://github.com/Xuyuanp/nerdtree-git-plugin.git ~/.vim/bundle/nerdtree-git-plugin
    

    vim-tmux-navigator

    cd ~/.vim/bundle
    git clone https://github.com/christoomey/vim-tmux-navigator
    

    bash-support

    cd ~/.vim/bundle
    git clone https://github.com/WolfgangMehner/bash-support.git
    
  2. Install Vim

sudo apt-get remove vim-tiny
sudo apt-get install vim vim-gui-common
  1. Copy configuration file home/.vim/vimrc to ~/.vim/vimrc.

tmux (Ubuntu 17.04)

  1. Install tmux
sudo apt-get install tmux
  1. Install tmux-gitbar:
git clone https://github.com/aurelien-rainone/tmux-gitbar.git ~/.tmux-gitbar
  1. Copy configuration file home/.tmux.conf to ~/.tmux.conf.

Git

  1. Copy configuration file home/.gitconfig to ~/.gitconfig and update the following with your own entry.
[user]
    name = Jay Amorin
    email = [email protected]

Noteworthy dotfiles

Noteworthy dotfiles here.

Releases

No releases published

Packages

No packages published