feat : kitty with initial tabs + wrap in nvim

This commit is contained in:
Florian Schmitt 2023-12-30 19:16:25 +03:00
parent ed289c2858
commit 7da4bccdf4
4 changed files with 18 additions and 1 deletions

View file

@ -80,3 +80,4 @@ confirm_os_window_close 0
enable_audio_bell no
background_opacity 1
#background_opacity 0.9
startup_session ~/.config/kitty/session.conf

View file

@ -0,0 +1,15 @@
new_tab Tmux
layout tall
launch --title "Tmux" zsh -c tmux -f ~/.config/tmux/tmux.conf attach || zsh -c tmux -f ~/.config/tmux/tmux.conf new
new_tab YesWiki Dev
layout tall:bias=75
cd ~/Developpements/yeswiki/
launch --title "Editeur" nvim .
launch --title "Console" --cwd=current
new_tab Music
layout fat:bias=75
cd ~/Musique/
launch --title "Jukebox" --cwd=current nvlc --no-playlist-autostart .
launch --title "Visualizer" --cwd=current catnip -d "VLC media player (LibVLC 3.0.20)"

View file

@ -2,4 +2,5 @@
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here
vim.opt.scrolloff = 8;
vim.opt.wrap = true;

View file

@ -32,7 +32,7 @@
enable = true;
autosuggestions.enable = true;
shellAliases = {
tmux = "tmux -f ~/.config/tmux/tmux.conf attach || tmux -f ~/.config/tmux/tmux.conf new";
#tmux = "tmux -f ~/.config/tmux/tmux.conf attach || tmux -f ~/.config/tmux/tmux.conf new";
ls = "lsd --hyperlink=auto";
icat = "kitty +kitten icat";
nixedit = "vi /etc/nixos";