33 lines
697 B
Lua
33 lines
697 B
Lua
-- You can add your own plugins here or in other files in this directory!
|
|
-- I promise not to create any merge conflicts in this directory :)
|
|
--
|
|
-- See the kickstart.nvim README for more information
|
|
|
|
-- 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 {}
|