diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-04-13 21:54:36 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-04-13 21:56:18 -0400 |
| commit | ee956d2ee95507f01f6fb52dd74f1017795c2bdc (patch) | |
| tree | e833456f681f847db1141f2ae2782cdc9723fcdd /modules/neovim/nvim/lua/config/oil.lua | |
| parent | bc803e124973793607fc51919d186f333e0457d5 (diff) | |
| download | home-ee956d2ee95507f01f6fb52dd74f1017795c2bdc.tar.gz | |
update
Diffstat (limited to 'modules/neovim/nvim/lua/config/oil.lua')
| -rw-r--r-- | modules/neovim/nvim/lua/config/oil.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/neovim/nvim/lua/config/oil.lua b/modules/neovim/nvim/lua/config/oil.lua new file mode 100644 index 0000000..bfa67a9 --- /dev/null +++ b/modules/neovim/nvim/lua/config/oil.lua @@ -0,0 +1,17 @@ +require("oil").setup({ + default_file_explorer = true, + columns = { + "icon" + }, + win_options = { + wrap = false, + signcolumn = "no", + cursorcolumn = false, + foldcolumn = "0", + spell = false, + list = false, + conceallevel = 3, + concealcursor = "nvic", + }, + constrain_cursor = "editable", +}) |