diff --git a/config/code-activator-zsh/settings.zsh b/config/code-activator-zsh/settings.zsh index cc41194..c8f8ea0 100644 Binary files a/config/code-activator-zsh/settings.zsh and b/config/code-activator-zsh/settings.zsh differ diff --git a/config/kitty/kitty.conf b/config/kitty/kitty.conf index 38b295a..15c2810 100644 --- a/config/kitty/kitty.conf +++ b/config/kitty/kitty.conf @@ -1,6 +1,9 @@ -background_opacity 0.85 -font_family DejaVuSansMono Nerd Font Complete Mono -font_size 17.0 -allow_remote_control yes +background_opacity 0.85 +font_family DejaVuSansMono Nerd Font Complete Mono +font_size 17.0 +allow_remote_control yes + +cursor_shape block +shell_integration no-cursor include ./theme.conf diff --git a/vim/navigation.vim b/vim/navigation.vim index 20115b2..fc776b0 100644 --- a/vim/navigation.vim +++ b/vim/navigation.vim @@ -13,10 +13,3 @@ nnoremap k " (CTRL + n/p) for files nnoremap :n nnoremap :N - - -" ( + e + RC_PREFIX) for edit rc -nnoremap ev :sp $WRYNVIMRC -nnoremap sv :source $MYVIMRC -nnoremap eb :sp $BASHRC -nnoremap ez :sp $ZSHRC diff --git a/vim/utility.vim b/vim/utility.vim index 00a10b1..4a8f300 100644 --- a/vim/utility.vim +++ b/vim/utility.vim @@ -3,3 +3,14 @@ function Sudowrite() endfunction nnoremap w :call Sudowrite()L + +function MakeFileExecutable() + execute '! chmod +x "%"' +endfunction + +nnoremap x :call MakeFileExecutable()L + +" ( + e + RC_PREFIX) for edit rc +nnoremap ev :tabedit $WRYNVIMRC:NERDTreeToggle +nnoremap sv :source $MYVIMRC +nnoremap ez :tabedit $ZSHRC