diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-04-14 19:00:42 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-04-14 19:00:42 -0400 |
| commit | f14829e9b35050af6cae3a675de624efd521444b (patch) | |
| tree | 7fdf4a89fa192c487f17356d4deb9450c035caf7 /modules/neovim/nvim/lua/config/oil.lua | |
| parent | 3302d6206096ccd5ab1844349dbf15d591b6e613 (diff) | |
| download | home-f14829e9b35050af6cae3a675de624efd521444b.tar.gz | |
fzf pilled
Diffstat (limited to 'modules/neovim/nvim/lua/config/oil.lua')
| -rw-r--r-- | modules/neovim/nvim/lua/config/oil.lua | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/modules/neovim/nvim/lua/config/oil.lua b/modules/neovim/nvim/lua/config/oil.lua index bfa67a9..492d4eb 100644 --- a/modules/neovim/nvim/lua/config/oil.lua +++ b/modules/neovim/nvim/lua/config/oil.lua @@ -3,15 +3,20 @@ require("oil").setup({ columns = { "icon" }, + constrain_cursor = "editable", + skip_confirm_for_simple_edits = true, win_options = { - wrap = false, - signcolumn = "no", - cursorcolumn = false, - foldcolumn = "0", - spell = false, - list = false, - conceallevel = 3, - concealcursor = "nvic", + number = false, + relativenumber = false, + cursorline = true, + }, + view_options = { + show_hidden = true, + }, + float = { + max_width = .7, + max_height = .5, + win_options = { + }, }, - constrain_cursor = "editable", }) |