This repository contains my personal configuration files.
First of all, clone the repository in the tmp folder (So that the repo will be deleted on reboot).
git clone git@github.com:obirn/dotfiles.git /tmp/dotfiles
Copy the vimrc file into your configuration folder:
cp /tmp/dotfiles/vimrc ~/afs/.confs/vimrc
Install the plugins:
vim +PluginInstall +qall
Errors like this might appear after typing the last command, but it is totally normal.
E185: Cannot find color scheme 'codedark'
Just press Enter.
Plugins should then install. You can then close this window and use vim ! ✅
First of all, clone the repository in the tmp folder (So that the repo will be deleted on reboot):
git clone git@github.com:obirn/dotfiles.git /tmp/dotfiles
My vim configuration has plugins, which requires Vundle.
You can install it by doing so:
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
Then, copy the .vimrc file from the repo:
cp /tmp/dotfiles/vimrc ~/.vimrc
Install the plugins:
vim +PluginInstall +qall
Errors like this might appear after typing the last command, but it is totally normal.
E185: Cannot find color scheme 'codedark'
Just press Enter.
Plugins should then install. You can then close this window and use vim ! ✅
This i3 config file is the one I used on EPITA's computer.
You could copy and paste the i3 config file from this repo in your afs, but I would strongly discourage that, as somes lines of the config files contains calls to programs that I installed with other config files.
To see how to install programs on PIE, see my install.sh section.
Most of the lines are included in the default i3 config file given by the school, so I won't explain these lines. I will only explain the lines I added personally.
Custom your i3lock with a background and a keymap (Mine is Mod+I)
bindsym $mod+i exec i3lock --image "/home/robin.varliette/afs/Image/shrek_1920_1080.png
Take screenshots (only works if flameshot is installed) with Mod+Shift+s
bindsym $mod+Shift+s exec flameshot gui -c
These commands starts discord, firefox, and a terminal with neofetch after logging from i3.
exec_always --no-startup-id discord exec_always --no-startup-id firefox exec_always --no-startup-id "alacritty --hold -e bash -c 'neofetch; bash'"
Important: the softwares will be launched on the same workspace. To launch every application on a specific workspace, you can add these lines: ``
Not completed yet