From d93578f15f461dff28a7832ed3929e699af176a5 Mon Sep 17 00:00:00 2001 From: Florian Schmitt Date: Thu, 18 Apr 2024 19:08:00 +0300 Subject: [PATCH] feat: clean kitty session and no relative numbers in vim --- dotfiles/kitty/session.conf | 10 ++-------- dotfiles/nvim/lua/config/options.lua | 1 + modules/console.nix | 4 ++++ 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/dotfiles/kitty/session.conf b/dotfiles/kitty/session.conf index 0063203..b9a3cd0 100644 --- a/dotfiles/kitty/session.conf +++ b/dotfiles/kitty/session.conf @@ -1,17 +1,11 @@ -new_tab Terminal layout tall -launch --title Terminal --cwd=~/Developpements -#launch zsh -c tmux -f ~/.config/tmux/tmux.conf new-session -A -s Terminal +cd ~/Developpements/ +launch --title "Terminal" zsh new_tab YesWiki Dev -#layout fat:bias=80 cd ~/Developpements/yeswiki/ launch --title "Editeur" nvim . new_tab YesWiki Log cd ~/Developpements/yeswiki/ launch --title "Console" symfony server:start -#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)' diff --git a/dotfiles/nvim/lua/config/options.lua b/dotfiles/nvim/lua/config/options.lua index a9edf50..c7e1022 100644 --- a/dotfiles/nvim/lua/config/options.lua +++ b/dotfiles/nvim/lua/config/options.lua @@ -6,3 +6,4 @@ opt.scrolloff = 8 opt.wrap = true opt.clipboard = "unnamedplus" opt.list = false +opt.relativenumber = false diff --git a/modules/console.nix b/modules/console.nix index d8baf02..c5d3f03 100644 --- a/modules/console.nix +++ b/modules/console.nix @@ -3,6 +3,10 @@ { programs.zsh.enable = true; + programs.fzf = { + fuzzyCompletion = true; + keybindings = true; + }; services = { mpd.enable = true;