From 9108f36b0560bf16bb5b0fde6c996db2ff2540b4 Mon Sep 17 00:00:00 2001 From: TheK4n Date: Sat, 29 Jan 2022 17:35:42 +0300 Subject: [PATCH] add ranger, edit EDITOR env, add Plugin devicons --- .config/ranger/rc.conf | 2 ++ .subbash/export | 2 +- .vim/.vimrc | 1 + Makefile | 3 +++ 4 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .config/ranger/rc.conf diff --git a/.config/ranger/rc.conf b/.config/ranger/rc.conf new file mode 100644 index 0000000..bd7345b --- /dev/null +++ b/.config/ranger/rc.conf @@ -0,0 +1,2 @@ +set preview_images true +set preview_images_method ueberzug diff --git a/.subbash/export b/.subbash/export index 297b9cb..37f0124 100644 --- a/.subbash/export +++ b/.subbash/export @@ -1,7 +1,7 @@ umask 0077 -export EDITOR="/usr/bin/env vim" +export EDITOR="/usr/bin/env nvim" export HISTSIZE=10000 export HISTFILESIZE=10000 diff --git a/.vim/.vimrc b/.vim/.vimrc index a8db7e1..b1874f4 100644 --- a/.vim/.vimrc +++ b/.vim/.vimrc @@ -95,6 +95,7 @@ call vundle#begin() Plugin 'terryma/vim-multiple-cursors' Plugin 'preservim/tagbar' Plugin 'preservim/vimux' + Plugin 'ryanoasis/vim-devicons' call vundle#end() diff --git a/Makefile b/Makefile index b3df211..eb8d03f 100644 --- a/Makefile +++ b/Makefile @@ -42,3 +42,6 @@ completion: sudo mkdir -p /etc/bash_completion.d && \ sudo ln -s $(PWD)/etc/bash_completion.d/all /etc/bash_completion.d +ranger: + ln -s $(PWD)/.config/ranger ~/.config +