Skip to content

tomis9/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotfiles

my personal .dotfiles folder

Includes all my files starting with "." from my home directory that are likely to be customised (.vimrc, .vim, .tmux.conf, .bashrc etc.).

installation

  1. R
    sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9 
    sudo add-apt-repository 'deb [arch=amd64,i386] https://cran.rstudio.com/bin/linux/ubuntu xenial/' 

    sudo apt-get update
    sudo apt-get install r-base
  • create libPath
    mkdir -p ~/.R/3.4.4
  • install package colorout

You may need these libraries:

    sudo apt-get install build-essential
    sudo apt-get install libcurl4-openssl-dev
    sudo apt-get install libssl-dev

and from R console:

    options(repos = "http://cran.us.r-project.org")
    .libPaths("~/.R/3.4.2")
    install.packages('devtools')
    library(devtools)
    install_github('jalvesaq/colorout')
  1. git
    sudo apt-get install git
  1. powerline
    sudo apt-get install python-pip
    sudo pip install --upgrade pip
    sudo pip install setuptools
    sudo pip install powerline-status

or

    sudo apt-get install python3-pip
    sudo pip3 install --upgrade pip
    sudo pip install setuptools
    sudo pip install powerline-status

installing fonts (based on http://powerline.readthedocs.io/en/master/installation/linux.html#fonts-installation)

wget https://github.com/powerline/powerline/raw/develop/font/PowerlineSymbols.otf
wget https://github.com/powerline/powerline/raw/develop/font/10-powerline-symbols.conf
mkdir ~/.fonts
mv PowerlineSymbols.otf ~/.fonts/
fc-cache -vf ~/.fonts/
mkdir -p ~/.config/fontconfig/conf.d
mv 10-powerline-symbols.conf ~/.config/fontconfig/conf.d/
  1. vim

(installation based on https://gist.github.com/odiumediae/3b22d09b62e9acb7788baf6fdbb77cf8)

Before you start, you probably need to install a few dependencies:

sudo apt-get install python-dev
sudo apt-get install python3-setuptools

and then run

    sudo apt-get remove --purge vim vim-runtime vim-gnome vim-tiny vim-gui-common
    sudo apt-get install liblua5.1-dev luajit libluajit-5.1 python-dev libperl-dev libncurses5-dev libatk1.0-dev libx11-dev libxpm-dev libxt-dev
    sudo rm -rf /usr/local/share/vim /usr/bin/vim
    cd
    git clone https://github.com/vim/vim
    cd vim
    git pull && git fetch
    ./configure \
    --enable-multibyte \
    --enable-perlinterp=dynamic \
    --enable-pythoninterp=dynamic \
    --with-python-config-dir=/usr/lib/python2.7/config-x86_64-linux-gnu \
    --enable-python3interp \
    --with-python3-config-dir=/usr/lib/python3.5/config-3.5m-x86_64-linux-gnu \
    --enable-luainterp \
    --with-luajit \
    --enable-cscope \
    --enable-gui=auto \
    --with-features=huge \
    --with-x \
    --enable-fontset \
    --enable-largefile \
    --disable-netbeans \
    --with-compiledby="yourname" \
    --enable-fail-if-missing
    make && sudo make install
    cd
    rm -r vim

and then

make
make install
    git clone https://github.com/tomis9/dotfiles ~/.dotfiles
    mkdir -p .dotfiles/vim/plugged
    cp .bashrc .bachrc_backup
    ln -sf ~/.dotfiles/bashrc ~/.bashrc
    ln -sf ~/.dotfiles/Rprofile ~/.Rprofile
    ln -sf ~/.dotfiles/gitconfig ~/.gitconfig
    ln -sf ~/.dotfiles/vim ~/.vim
    ln -s ~/.dotfiles/ideavimrc ~/.ideavimrc
    ln -s ~/.dotfiles/init.vim ~/.config/nvim/init.vim
    ln -s /home/td/.dotfiles/settings.json /home/td/.config/Code/User/

i3

wifi: nmtui

sudo apt install i3lock -y
sudo apt install xbacklight -y
sudo apt install feh -y
sudo apt install arandr -y
sudo apt install i3status -y
sudo apt install i3blocks -y
sudo apt install rofi -y
sudo apt install compton -y

About

my dotfiles including .vim, .vimrc, .bashrc, .tmux.conf etc.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published