NVIM tree configurations.
This commit is contained in:
parent
bc4ad1218b
commit
8a0439114d
3 changed files with 87 additions and 2 deletions
|
|
@ -2,4 +2,31 @@
|
|||
-- I promise not to create any merge conflicts in this directory :)
|
||||
--
|
||||
-- See the kickstart.nvim README for more information
|
||||
return {}
|
||||
|
||||
-- disable netrw at the very start of your init.lua
|
||||
vim.g.loaded_netrw = 1
|
||||
vim.g.loaded_netrwPlugin = 1
|
||||
|
||||
-- optionally enable 24-bit colour
|
||||
vim.opt.termguicolors = true
|
||||
|
||||
-- empty setup using defaults
|
||||
require("nvim-tree").setup()
|
||||
|
||||
-- OR setup with some options
|
||||
--require("nvim-tree").setup({
|
||||
-- sort = {
|
||||
-- sorter = "case_sensitive",
|
||||
-- },
|
||||
-- view = {
|
||||
-- width = 30,
|
||||
-- },
|
||||
-- renderer = {
|
||||
-- group_empty = true,
|
||||
-- },
|
||||
-- filters = {
|
||||
-- dotfiles = true,
|
||||
-- },
|
||||
--})
|
||||
|
||||
--return {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue