Changed neo-tree to float

This commit is contained in:
Rue Coimbra 2025-10-27 01:27:44 -03:00
parent b2285b1f7c
commit f8a4587665
2 changed files with 3 additions and 1 deletions

View File

@ -418,7 +418,7 @@ require('lazy').setup({
-- language (such as `gopls`, `lua_ls`, `rust_analyzer`, etc.). These Language Servers -- language (such as `gopls`, `lua_ls`, `rust_analyzer`, etc.). These Language Servers
-- (sometimes called LSP servers, but that's kind of like ATM Machine) are standalone -- (sometimes called LSP servers, but that's kind of like ATM Machine) are standalone
-- processes that communicate with some "client" - in this case, Neovim! -- processes that communicate with some "client" - in this case, Neovim!
-- --"
-- LSP provides Neovim with features like: -- LSP provides Neovim with features like:
-- - Go to definition -- - Go to definition
-- - Find references -- - Find references

View File

@ -16,10 +16,12 @@ return {
opts = { opts = {
filesystem = { filesystem = {
window = { window = {
position = 'float',
mappings = { mappings = {
['\\'] = 'close_window', ['\\'] = 'close_window',
}, },
}, },
}, },
popup_border_syle = 'rounded',
}, },
} }