This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Config version for compatibility and deprecations | |
| # Fallback value (if you omit the key): config-version = 1 | |
| config-version = 2 | |
| # You can use it to add commands that run after AeroSpace startup. | |
| # Available commands : https://nikitabobko.github.io/AeroSpace/commands | |
| after-startup-command = [] | |
| # Start AeroSpace at login | |
| start-at-login = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <base> | |
| * Swap Space and Backspace | |
| [spc]>[bspc] | |
| [bspc]>[spc] | |
| * Swap Up and Down arrows | |
| [down]>[up] | |
| [up]>[down] | |
| * Move CTRL locations on both hands |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set-option -sa terminal-overrides ",xterm*:Tc" | |
| set -g mouse on | |
| set -g default-command /usr/bin/zsh | |
| set -g default-shell /usr/bin/zsh | |
| unbind C-b | |
| set -g prefix C-Space | |
| bind C-Space send-prefix | |
| # Vim style pane selection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Source: https://github.com/Chick2D/neofetch-themes/ | |
| # Made by https://github.com/Dan1jel | |
| # Customization Wiki https://github.com/dylanaraps/neofetch/wiki/Customizing-Info | |
| print_info() { | |
| # info title | |
| # info underline | |
| prin "\n" | |
| prin "\n Weather" "$(curl wttr.in/?0?q?T | awk '/°(C|F)/ {printf $(NF-1) $(NF) " ("a")"} /,/ {a=$0}')" | |
| prin "┌──────────────────────────────────────┐" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Xft.dpi: 96 | |
| Xft.antialias: true | |
| Xft.hinting: true | |
| Xft.rgba: rgb | |
| Xft.autohint: false | |
| Xft.hintstyle: hintslight | |
| Xft.lcdfilter: lcddefault | |
| *background: #1b182c | |
| *foreground: #cbe3e7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| font: | |
| normal: | |
| family: Anonymous Pro | |
| style: Bold | |
| italic: | |
| family: Anonymous Pro | |
| style: Italic | |
| bold_italic: | |
| family: Anonymous Pro | |
| style: Bold Italic |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # i3status configuration file. | |
| # see "man i3status" for documentation. | |
| # It is important that this file is edited as UTF-8. | |
| # The following line should contain a sharp s: | |
| # ß | |
| # If the above line is not correctly displayed, fix your editor first! | |
| general { | |
| colors = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # i3 config file (v4) | |
| # Please see http://i3wm.org/docs/userguide.html for a complete reference! | |
| # Set mod key (Mod1=<Alt>, Mod4=<Super>) | |
| set $mod Mod4 | |
| # set default desktop layout (default is tiling) | |
| # workspace_layout tabbed <stacking|tabbed> | |
| # Configure border style <normal|1pixel|pixel xx|none|pixel> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/bash | |
| sudo apt update | |
| sudo apt upgrade -y | |
| sudo reboot | |
| sudo ufw enable && sudo ufw allow ssh | |
| sudo apt install nginx | |
| sudo ufw allow 'Nginx HTTP' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| call plug#begin('~/.vim/plugged') | |
| Plug 'challenger-deep-theme/vim', { 'as': 'challenger-deep' } | |
| Plug 'morhetz/gruvbox' | |
| Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } | |
| Plug 'junegunn/fzf.vim' | |
| Plug 'stsewd/fzf-checkout.vim' | |
| Plug 'sheerun/vim-polyglot' | |
| Plug 'vim-airline/vim-airline' | |
| Plug 'vim-airline/vim-airline-themes' |