mirror of
https://github.com/arnaucube/configs.git
synced 2026-03-22 23:46:41 +01:00
No description
- Shell 33.5%
- Nix 26.2%
- C 19.9%
- Vim Script 15.2%
- Python 3.2%
- Other 1.9%
| .calcurse/caldav | ||
| .moc | ||
| alacritty | ||
| bin | ||
| i3 | ||
| i3status | ||
| keyboards | ||
| launch-container | ||
| nginx-conf | ||
| nixos | ||
| other-scripts | ||
| raspberry | ||
| server-dockers | ||
| sway | ||
| .bashrc | ||
| .gitconfig | ||
| .sh_alias | ||
| .tmux.conf | ||
| .vimrc | ||
| .xinitrc | ||
| .Xmodmap | ||
| .XmodmapGALLIUMOS | ||
| .zshrc | ||
| backup-configs.sh | ||
| backup-nixos-configs.sh | ||
| init.sage | ||
| init.vim | ||
| install-new-desktop.sh | ||
| install-new-server.sh | ||
| qutebrowser-config.py | ||
| radicale-config | ||
| README.md | ||
| redshift.conf | ||
| restore-backup-configs.sh | ||
| swap-create.sh | ||
| vimconfigbase.vim | ||
| vpn-local-conection.sh | ||
| zathurarc | ||
configs
config files
List of utilities for terminal
- bat https://github.com/sharkdp/bat
- rg https://github.com/BurntSushi/ripgrep
- tig https://github.com/jonas/tig
- gitg
alias gitg="git log --color --graph --abbrev-commit --pretty=format:'%Cred%h%Creset%C(yellow)%d%Creset %s %Cgreen(%ar)%C(cyan) %an<%ae>%Creset'"
alias ls='exa'
alias lst='exa -l -snew'
- fd https://github.com/sharkdp/fd
- jq https://github.com/stedolan/jq
- tmux
- nvim
- mpsyt (mps-youtube) https://github.com/mps-youtube/mps-youtube
- fzf https://github.com/junegunn/fzf
- Vim:
.vimrc- put
vimconfigbase.viminto~/ - put
.vimrcinto~/ - install https://github.com/junegunn/vim-plug
- inside vim, execute:
:PlugInstall
- put
- NeoVim:
init.vim- put
vimconfigbase.viminto~/ - in
.config/nvim/init.vim - install https://github.com/junegunn/vim-plug
- inside neovim, execute:
:PlugInstall - for the vim-go, execute: :GoInstallBinaries
- put
.bashrc- in
~/home/.bashrcdirectory - execute
source .bashrc
- in
- Tmux:
.tmux.conf- in
~/home/.tmux.confdirectory
- in
- Keyboard remap
.Xmodmap- in
~/home/.Xmodmap - changes will be applied each session start
- to apply changes in the current session use
xmodmap ~/.Xmodmap
- in
- Redshift
redshift.conf- in
~/.config/redshift.conf
- in
- i3 config files
/i3and/i3statusdirectories go inside~/.config/directory - alacritty: copy
alacrittydir into~/.config/directory
server side
- radicale
config- in
~/.conf/radicale/config
- in
swap file
# create swap file
> dd if=/dev/zero of=./swapfile bs=1GB count=40
# add permisions
> chmod 600 ./swapfile
# format the swapfile
> mkswap ./swapfile
# enable swap on swapfile
> swapon ./swapfile
# check that it is enabled
> swapon --show
# make swap persistent:
# add the following line at the end of the /etc/fstab file
~/swapfile swap swap defaults 0 0