Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 669 Bytes

README.md

File metadata and controls

48 lines (31 loc) · 669 Bytes

.dotfiles

  • Clone this repository
cd ~ && git clone https://github.com/debaraj-barua/.dotfiles.git

vim

  • Create a symlink for your vimrc file
ln -rsf ~/.dotfiles/vimrc/.vimrc ~/.vimrc
  • Or, source this vimrc in your main .vimrc
source ~/.dotfiles/vimrc/.vimrc

sample-vim

git

Add this to the global gitconfig:

[include]
    path = .dotfiles/git/.gitconfig

bash

  • Create a symlink for your bashrc file
ln -rsf ~/.dotfiles/bashrc/.bashrc ~/.bashrc
  • Or, source this bashrc in your main .bashrc
source ~/.dotfiles/bashrc/.bashrc

sample-bash