feat : kitty with initial tabs + wrap in nvim
This commit is contained in:
parent
ed289c2858
commit
7da4bccdf4
4 changed files with 18 additions and 1 deletions
|
@ -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
|
||||
|
|
15
dotfiles/kitty/session.conf
Normal file
15
dotfiles/kitty/session.conf
Normal 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)"
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue