f4295a7ac1
Added in my custom configuration from Neovim that I started writing from scratch. So far only have implemented tokyonight theme, telescope, treesitter, and neotree.
14 lines
433 B
Lua
14 lines
433 B
Lua
return {
|
|
"nvim-neo-tree/neo-tree.nvim",
|
|
branch = "v3.x",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
|
"MunifTanjim/nui.nvim",
|
|
-- "3rd/image.nvim", -- Optional image support in preview window: See `# Preview Mode` for more information
|
|
},
|
|
config = function()
|
|
vim.keymap.set('n', '<leader>fe', ':Neotree filesystem reveal toggle left<CR>', {})
|
|
end
|
|
}
|