From 4a6e1a2bcd6e017baa54eacd75eb34e2898bfc05 Mon Sep 17 00:00:00 2001 From: Leo Alho Date: Sun, 25 Feb 2024 10:03:48 +0200 Subject: [PATCH] Update alacritty, nvim, tmux configs --- .config/alacritty/alacritty.toml | 3 +++ .config/nvim/init.vim | 10 +++++++++- .tmux.conf | 5 +++++ 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml index be65157..4ffb311 100644 --- a/.config/alacritty/alacritty.toml +++ b/.config/alacritty/alacritty.toml @@ -1,3 +1,6 @@ +# [shell] +# program = "/bin/bash" +# args = ["-l","-c","tmux attach || tmux"] [window] opacity = 0.75 padding = { x = 5, y = 5} diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index e5a500a..132f979 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -1,4 +1,12 @@ -" Line numbers +call plug#begin() + +Plug 'nvim-tree/nvim-web-devicons' +Plug 'nvim-tree/nvim-tree.lua' + +call plug#end() + +lua require'nvim-tree'.setup {} + set number set noswapfile diff --git a/.tmux.conf b/.tmux.conf index bb5b3fb..39b9b07 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,3 +1,6 @@ +#Add a mapping for reloading the conf file" +bind r source-file ~/.tmux.conf \; display-message "RELOADING CONFIGURATION FILE…" + # remap prefix from 'C-b' to 'C-a' unbind C-b set-option -g prefix C-a @@ -5,3 +8,5 @@ bind-key C-a send-prefix # Enable mouse control (clickable windows, panes, resizable panes) # set -g mouse on + +set -g status-style bg=black,fg=white