No description
  • Shell 33.5%
  • Nix 26.2%
  • C 19.9%
  • Vim Script 15.2%
  • Python 3.2%
  • Other 1.9%
Find a file
2026-02-28 22:50:46 +01:00
.calcurse/caldav add calcurse config, radicale config, nginx config 2019-03-02 01:41:57 +01:00
.moc moc config 2019-02-05 20:27:01 +01:00
alacritty migrate from i3 to sway (wm) 2025-08-19 23:31:36 +02:00
bin add box script to create LXC containers for dev 2026-02-28 22:50:46 +01:00
i3 add dap-update script, add i3 & alacritty shortcut for bold font 2025-02-10 23:19:52 +01:00
i3status i3 & i3status config 2018-12-23 09:20:56 +01:00
keyboards put keyboards files into dir 2024-09-03 18:15:52 +02:00
launch-container update of few files 2021-10-09 11:42:30 +02:00
nginx-conf install script add nginx & certbot 2019-09-22 13:21:20 +02:00
nixos backup media servers configs (and add sonarr, radarr, etc) 2026-01-10 12:13:55 +01:00
other-scripts install-new-server.sh: automate fzf installaiton, update go version, 2025-06-07 18:13:13 +02:00
raspberry add dap-update script, add i3 & alacritty shortcut for bold font 2025-02-10 23:19:52 +01:00
server-dockers add parse-blueray sh script, and backup server-dockers config 2026-02-08 18:08:54 +01:00
sway backup media servers configs (and add sonarr, radarr, etc) 2026-01-10 12:13:55 +01:00
.bashrc Add zsh config 2021-03-07 21:15:45 +01:00
.gitconfig Update git delta config https://github.com/dandavison/delta/issues/891 2022-01-16 17:59:51 +01:00
.sh_alias install-new-server.sh: update go version, add btop, non-interactive rust imstallation 2024-02-04 12:56:27 +01:00
.tmux.conf add nixos config 2023-07-09 08:28:13 +02:00
.vimrc migrate from i3 to sway (wm) 2025-08-19 23:31:36 +02:00
.xinitrc Update:add git wip,nvim add colorcolumn=100,&other 2020-12-19 21:39:41 +01:00
.Xmodmap Add gotty, add keyboard-layout, update .Xmodmap 2020-11-22 17:34:03 +01:00
.XmodmapGALLIUMOS Add .Xmodmap on GalliumOS, update .bashrc to don't calculate git changed files in each dir 2020-07-07 20:05:49 +02:00
.zshrc update nixos configs 2025-01-25 19:27:36 +01:00
backup-configs.sh backup media servers configs (and add sonarr, radarr, etc) 2026-01-10 12:13:55 +01:00
backup-nixos-configs.sh nixos: add wasm packages, reorganize systemPackages. vim: wasm syntax, vim-maximizer 2025-01-15 18:41:26 +01:00
init.sage add init.sage, update .vimrc for vimwiki (instead of in nvim) 2023-01-11 19:49:45 +01:00
init.vim small update: dap-update, vim & nixos: add coq related config 2025-03-29 12:16:55 +01:00
install-new-desktop.sh update nixos configs 2025-01-25 19:27:36 +01:00
install-new-server.sh various updates on nixos,sway,scripts&dockercompose 2025-11-08 17:04:36 +01:00
qutebrowser-config.py add qutebrowser config file, update raspberrypi script 2024-07-11 19:03:05 +02:00
radicale-config add calcurse config, radicale config, nginx config 2019-03-02 01:41:57 +01:00
README.md update ripgrep installation, add swap file creation script 2024-02-03 23:31:50 +01:00
redshift.conf small update 2018-12-23 22:18:49 +01:00
restore-backup-configs.sh backup media servers configs (and add sonarr, radarr, etc) 2026-01-10 12:13:55 +01:00
swap-create.sh update ripgrep installation, add swap file creation script 2024-02-03 23:31:50 +01:00
vimconfigbase.vim migrate from i3 to sway (wm) 2025-08-19 23:31:36 +02:00
vpn-local-conection.sh update .vimrc & .bashrc, add vpn-local-conection.sh 2019-07-14 12:54:25 +02:00
zathurarc backup media servers configs (and add sonarr, radarr, etc) 2026-01-10 12:13:55 +01:00

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