Changed neo-tree to float
This commit is contained in:
parent
b2285b1f7c
commit
f8a4587665
2
init.lua
2
init.lua
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -16,10 +16,12 @@ return {
|
||||||
opts = {
|
opts = {
|
||||||
filesystem = {
|
filesystem = {
|
||||||
window = {
|
window = {
|
||||||
|
position = 'float',
|
||||||
mappings = {
|
mappings = {
|
||||||
['\\'] = 'close_window',
|
['\\'] = 'close_window',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
popup_border_syle = 'rounded',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue