Coder Social home page Coder Social logo

dotfiles's Introduction

My dotfiles

A repository containing my dotfiles (.files).

i3-wm

It is sufficient to symlink the i3wm folder to ~/.i3/. However I would suggest you checkout at least the start-up section and the bindings.

The lockScreen.sh script contains the following code:

#!/bin/sh
scrot /tmp/screen_locked.png
convert /tmp/screen_locked.png -scale 10% -scale 1000% /tmp/screen_locked_blur.png
i3lock -i /tmp/screen_locked_blur.png

Unfortunately I don't remember where I got it from, so I'm sorry for not giving credit.

.gitconfig

My gitconfig file calls a script ~/Scripts/git-omgwtfbbq, you will find the content of this script below:

#!/bin/sh

# Get confirmation from user
read -p "This will erase any work done and reset to HEAD. Continue? [yN] " -n1
if [[ ! $REPLY =~ ^[Yy]$ ]]
then
exit 1
fi

echo ''
# Reset everything
git clean -f && (git rebase --abort || git reset --hard)

Don't remember where I found this script, so sorry for not giving credit.

Of course change name and e-mail when you copy-paste the config file.

.gitmessage.txt

Just a commit template.

.tmux.conf

My configuration makes use of PowerLine. I've got the PowerLine repository checked out in ~/.tmux/powerline. You may need the Powerline patched fonts as well. You can find about them in the PowerLine repository.

.vifm

My config file for vifm. vifm is a vi style file manager. In my config I did set some programs to use when opening certain files.

.vimrc

Before using the .vimrc file you will have to install Vundle. You can install Vundle as follows:

git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/vundle

After installing Vundle you can run:

vim +PluginInstall +qall

Two plug-ins need compiling, so head over to ~/.vim/bundle/vimproc.vim and run make. Afterwards go to~/.vim/bundle/YouCompleteMe and run ./install.sh. If you are a C or C++ programmer you can run the install script with some options, but check the YMC documentation for those.

.Xresources

My Xresources file, contains things like setting the transparency of my URxvt terminal.

.zshrc

Ditched the zsh config in favour of the Prezto set-up. You can find my fork on GitHub as well. In my fork I keep my own set-up. Also I've still got grml installed.

dotfiles's People

Contributors

bker avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.