summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/_rnvimr/init.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-03-16 21:54:42 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-03-16 21:54:42 +0100
commit2b6ae8473e1b0fb8cc0bd16aa8c485a77ee5e847 (patch)
tree3e9e499480f1694f25a0835877e3ba5e63e403d4 /.config/nvim/lua/_rnvimr/init.lua
parentc0284168111a9b74761cf2094bdc16fec9006f7b (diff)
renaming, treesitter buggy
Diffstat (limited to '.config/nvim/lua/_rnvimr/init.lua')
-rw-r--r--.config/nvim/lua/_rnvimr/init.lua22
1 files changed, 22 insertions, 0 deletions
diff --git a/.config/nvim/lua/_rnvimr/init.lua b/.config/nvim/lua/_rnvimr/init.lua
new file mode 100644
index 0000000..055326c
--- /dev/null
+++ b/.config/nvim/lua/_rnvimr/init.lua
@@ -0,0 +1,22 @@
+-- Make Ranger replace netrw and be the file explorer
+vim.g.rnvimr_ex_enable = 1
+vim.g.rnvimr_draw_border = 1
+
+-- Make Ranger to be hidden after picking a file
+vim.g.rnvimr_pick_enable = 1
+
+-- Make Neovim to wipe the buffers corresponding to the files deleted by Ranger
+vim.g.rnvimr_bw_enable = 1
+
+-- vim.cmd('nmap <leader>r :RnvimrToggle<CR>')
+
+--[[ let g:rnvimr_ranger_cmd = 'ranger --cmd="set column_ratios 1,1"'
+ " \ --cmd="set draw_borders separators"'
+" let g:rnvimr_layout = { 'relative': 'editor',
+" \ 'width': float2nr(round(0.6 * &columns)),
+" \ 'height': float2nr(round(0.6 * &lines)),
+" \ 'col': float2nr(round(0.2 * &columns)),
+" \ 'row': float2nr(round(0.2 * &lines)),
+" \ 'style': 'minimal' }
+let g:rnvimr_presets = [
+ \ {'width': 0.800, 'height': 0.800}] ]]