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 +