stevearc / oil.nvim

Neovim file explorer: edit your filesystem like a buffer
MIT License
3.83k stars 109 forks source link

incomplete documentation: how to change border sytle #417

Closed bfeitknecht closed 3 months ago

bfeitknecht commented 3 months ago

Did you check the docs and existing issues?

Neovim version (nvim -v)

0.10.0

Operating system/version

MacOS 14.5

Describe the bug

I can't figure out how to change the border style. Is there another option other that "rounded"?

What is the severity of this bug?

minor (annoyance)

Steps To Reproduce

<cmd> Oil --float . <CR>

Expected Behavior

Mention somewhere if there are other window border options.

Directory structure

No response

Repro

-- save as repro.lua
-- run with nvim -u repro.lua
-- DO NOT change the paths
local root = vim.fn.fnamemodify("./.repro", ":p")

-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "runtime", "cache" }) do
  vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end

-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
  vim.fn.system({
    "git",
    "clone",
    "--filter=blob:none",
    "--single-branch",
    "https://github.com/folke/lazy.nvim.git",
    lazypath,
  })
end
vim.opt.runtimepath:prepend(lazypath)

-- install plugins
local plugins = {
  "folke/tokyonight.nvim",
  {
        "stevearc/oil.nvim",
        config = function()
            require("oil").setup({
              -- add any needed settings here
            })
        end,
  },
  -- add any other plugins here
}
require("lazy").setup(plugins, {
  root = root .. "/plugins",
})

vim.cmd.colorscheme("tokyonight")
-- add anything else here

Did you check the bug with a clean config?

stevearc commented 3 months ago

See :help nvim_open_win. This will give you an idea what the options are for the border parameter, and a better understanding of how floating windows are configured in general