You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
arnaucube f2eea2c4e4 comment out unused instructions in install-new-server.sh 2 weeks ago
.calcurse/caldav add calcurse config, radicale config, nginx config 5 years ago
.moc moc config 5 years ago
alacritty update wk & alacritty config 9 months ago
bin add rm-targets script 3 months ago
i3 update nixos configs, rm borders in i3 9 months ago
i3status i3 & i3status config 5 years ago
launch-container update of few files 2 years ago
launch-scripts Update:add git wip,nvim add colorcolumn=100,&other 3 years ago
nginx-conf install script add nginx & certbot 4 years ago
nixos update nixos config 4 months ago
qmk Add corne keymap layout 3 years ago
raspberry add rs40 layout, update rpi config 4 months ago
screen-scripts Add screen-android.sh 3 years ago
.Xmodmap Add gotty, add keyboard-layout, update .Xmodmap 3 years ago
.XmodmapGALLIUMOS Add .Xmodmap on GalliumOS, update .bashrc to don't calculate git changed files in each dir 3 years ago
.bashrc Add zsh config 3 years ago
.gitconfig Update git delta config https://github.com/dandavison/delta/issues/891 2 years ago
.sh_alias install-new-server.sh: update go version, add btop, non-interactive rust imstallation 2 months ago
.tmux.conf add nixos config 9 months ago
.vimrc small configs update 9 months ago
.xinitrc Update:add git wip,nvim add colorcolumn=100,&other 3 years ago
.zshrc update nixos config, update install-new-desktop.sh 9 months ago
README.md update ripgrep installation, add swap file creation script 2 months ago
backup-nixos-configs.sh update nixos config 4 months ago
corne_keymap.c add rs40 layout, update rpi config 4 months ago
init.sage add init.sage, update .vimrc for vimwiki (instead of in nvim) 1 year ago
init.vim backup nixos config, nvim: add gitlink-vim 9 months ago
install-new-desktop.sh update nixos config, update install-new-desktop.sh 9 months ago
install-new-server.sh comment out unused instructions in install-new-server.sh 2 weeks ago
keymap.c.old update qmk keymap.c config 10 months ago
radicale-config add calcurse config, radicale config, nginx config 5 years ago
redshift.conf small update 5 years ago
rs40_keymap.c add rs40 layout, update rpi config 4 months ago
swap-create.sh update ripgrep installation, add swap file creation script 2 months ago
vimconfigbase.vim Update:add git wip,nvim add colorcolumn=100,&other 3 years ago
vpn-local-conection.sh update .vimrc & .bashrc, add vpn-local-conection.sh 4 years ago

README.md

configs

config files

List of utilities for terminal

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'

  • Vim: .vimrc
  • NeoVim: init.vim
    • put vimconfigbase.vim into ~/
    • in .config/nvim/init.vim
    • install https://github.com/junegunn/vim-plug
    • inside neovim, execute: :PlugInstall
    • for the vim-go, execute: :GoInstallBinaries
  • .bashrc
    • in ~/home/.bashrc directory
    • execute source .bashrc
  • Tmux: .tmux.conf
    • in ~/home/.tmux.conf directory
  • Keyboard remap .Xmodmap
    • in ~/home/.Xmodmap
    • changes will be applied each session start
    • to apply changes in the current session use xmodmap ~/.Xmodmap
  • Redshift redshift.conf
    • in ~/.config/redshift.conf
  • i3 config files /i3 and /i3status directories go inside ~/.config/ directory
  • alacritty: copy alacritty dir into ~/.config/ directory

server side

  • radicale config
    • in ~/.conf/radicale/config

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