Added zellij config

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2024-03-22 10:40:01 +0100
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2024-03-22 10:40:01 +0100
Commit 1659eb925779c64587017a431f7f80a8cfe75d7d (patch)
-rw-r--r-- README.md 1
-rw-r--r-- alacritty.yml 20
-rwxr-xr-x shenanigans.sh 1
3 files changed, 22 insertions, 0 deletions
diff --git a/README.md b/README.md
...
9
Then create symbolic links to actual config files.
9
Then create symbolic links to actual config files.
10
  
10
  
11
```sh
11
```sh
  
12
ln -s ~/.dotfiles/alacritty.yml ~/.alacritty.yml
12
ln -s ~/.dotfiles/shenanigans.sh ~/.shenanigans.sh
13
ln -s ~/.dotfiles/shenanigans.sh ~/.shenanigans.sh
13
ln -s ~/.dotfiles/helix.toml ~/.config/helix/config.toml
14
ln -s ~/.dotfiles/helix.toml ~/.config/helix/config.toml
14
ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf
15
ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf
...
diff --git a/alacritty.yml b/alacritty.yml
  
1
env:
  
2
  TERM: xterm-256color
  
3
  
  
4
window:
  
5
  dimensions:
  
6
    columns: 130
  
7
    lines: 60
  
8
  
  
9
font:
  
10
  size: 14
  
11
  normal:
  
12
    family: Berkeley Mono
  
13
  bold:
  
14
    family: Berkeley Mono
  
15
  italic:
  
16
    family: Berkeley Mono
  
17
  
  
18
colors:
  
19
  primary:
  
20
    background: "#161616"
diff --git a/shenanigans.sh b/shenanigans.sh
...
35
alias grep='grep --color=always'
35
alias grep='grep --color=always'
36
alias less='less -R'
36
alias less='less -R'
37
alias gg='lazygit'
37
alias gg='lazygit'
  
38
alias z='zellij --layout compact options --simplified-ui true --disable-mouse-mode'
38
alias server='python3 -m http.server 6969'
39
alias server='python3 -m http.server 6969'
39
  
40
  
40
# Custom folder jump commands.
41
# Custom folder jump commands.
...