diff options
author | terminaldweller <thabogre@gmail.com> | 2022-01-30 15:06:45 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2022-01-30 15:06:45 +0000 |
commit | 4818098e614f4ef30a322601f932923a46c31207 (patch) | |
tree | ba0daae70ac437e2b30e3008c3c41b72c7e2ad35 | |
parent | updates (diff) | |
download | scripts-4818098e614f4ef30a322601f932923a46c31207.tar.gz scripts-4818098e614f4ef30a322601f932923a46c31207.zip |
updates
-rw-r--r-- | .config/ranger/rc.conf | 11 | ||||
-rw-r--r-- | .gdbinit | 1 | ||||
-rw-r--r-- | .screenrc | 6 | ||||
-rw-r--r-- | .zshrc | 2 |
4 files changed, 16 insertions, 4 deletions
diff --git a/.config/ranger/rc.conf b/.config/ranger/rc.conf index 9d32017..f285c3a 100644 --- a/.config/ranger/rc.conf +++ b/.config/ranger/rc.conf @@ -44,10 +44,10 @@ set confirm_on_delete multiple # Use non-default path for file preview script? # ranger ships with scope.sh, a script that calls external programs (see # README.md for dependencies) to preview images, archives, etc. -#set preview_script ~/.config/ranger/scope.sh +set preview_script ~/.config/ranger/scope.sh # Use the external preview script or display simple plain text or image previews? -#set use_preview_script true +set use_preview_script true # Automatically count files in the directory, even before entering them? set automatically_count_files true @@ -121,7 +121,7 @@ set unicode_ellipsis false # BIDI support - try to properly display file names in RTL languages (Hebrew, Arabic). # Requires the python-bidi pip package -set bidi_support false +set bidi_support true # Show dotfiles in the bookmark preview box? set show_hidden_bookmarks true @@ -238,7 +238,7 @@ set cd_tab_case sensitive # Use fuzzy tab completion with the "cd" command. For example, # ":cd /u/lo/b<tab>" expands to ":cd /usr/local/bin". -set cd_tab_fuzzy false +set cd_tab_fuzzy true # Avoid previewing files larger than this size, in bytes. Use a value of 0 to # disable this feature. @@ -725,3 +725,6 @@ tmap <delete> eval -q fm.ui.taskview.task_remove() tmap <C-l> redraw_window tmap <ESC> taskview_close copytmap <ESC> q Q w <C-c> + +map f console scout -ftsea%space +map <C-d> shell dragon -a -x %p --and-exit @@ -22,6 +22,7 @@ end # configs set listsize 13 set follow-fork-mode child +set follow-exec-mode new set pagination off set detach-on-fork on set breakpoint pending on diff --git a/.screenrc b/.screenrc new file mode 100644 index 0000000..0b544c0 --- /dev/null +++ b/.screenrc @@ -0,0 +1,6 @@ +hardstatus alwayslastline +hardstatus string '%{= kG}[ %{G}%H %{g}][%= %{= kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][%{B} %m-%d %{W}%c %{g}]' +escape ^Bb +defscrollback 1000 +vbell off +term screen-256color @@ -189,6 +189,8 @@ alias bashrc="vim ~/scripts/.bashrc" alias fixbashrc="cp ~/scripts/.bashrc ~/" alias offlineimaprc="vim ~/scripts/.offlineimaprc" alias fixofflineimaprc="cp ~/scripts/.offlineimaprc ~/" +alias screenrc="vim ~/scripts/.screenrc" +alias fixscreenrc="cp ~/scripts/.screenrc ~/" #autosuggest ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#5f5fff,bg=#000000,bold" |