Added a filetree eat your heart out Primeagen
parent
c2d8e81d25
commit
e422f901f5
@ -0,0 +1,35 @@
|
||||
require("neo-tree").setup({
|
||||
close_if_last_window = true,
|
||||
enable_git_status = true,
|
||||
default_component_configs = {
|
||||
icon = {
|
||||
folder_closed = "+",
|
||||
folder_open = "-",
|
||||
folder_empty = "",
|
||||
-- The next two settings are only a fallback, if you use nvim-web-devicons and configure default icons there
|
||||
-- then these will never be used.
|
||||
default = " ",
|
||||
highlight = "NeoTreeFileIcon"
|
||||
},
|
||||
name = {
|
||||
trailing_slash = false,
|
||||
use_git_status_colors = true,
|
||||
highlight = "NeoTreeFileName",
|
||||
},
|
||||
git_status = {
|
||||
symbols = {
|
||||
-- Change type
|
||||
added = "", -- or "✚", but this is redundant info if you use git_status_colors on the name
|
||||
modified = "", -- or "", but this is redundant info if you use git_status_colors on the name
|
||||
deleted = "", -- this can only be used in the git_status source
|
||||
renamed = "", -- this can only be used in the git_status source
|
||||
-- Status type
|
||||
untracked = "",
|
||||
ignored = "",
|
||||
unstaged = "",
|
||||
staged = "",
|
||||
conflict = "",
|
||||
}
|
||||
},
|
||||
},
|
||||
})
|
@ -1,54 +1,66 @@
|
||||
vim.cmd [[packadd packer.nvim]]
|
||||
|
||||
return require('packer').startup(function(use)
|
||||
use 'wbthomason/packer.nvim'
|
||||
|
||||
-- Navigation
|
||||
use {
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.5',
|
||||
-- or , branch = '0.1.x',
|
||||
requires = { { 'nvim-lua/plenary.nvim' } }
|
||||
}
|
||||
|
||||
-- Colours
|
||||
use('ellisonleao/gruvbox.nvim')
|
||||
use({ 'rose-pine/neovim', as = 'rose-pine' })
|
||||
use({ 'bluz71/vim-moonfly-colors', as = 'moonfly' })
|
||||
|
||||
-- Treesitter
|
||||
use('nvim-treesitter/nvim-treesitter', { run = ':TSUpdate' })
|
||||
use('nvim-treesitter/playground')
|
||||
|
||||
-- Editing
|
||||
use('mbbill/undotree')
|
||||
use('tpope/vim-surround')
|
||||
use('tpope/vim-commentary')
|
||||
|
||||
-- LSP
|
||||
use {
|
||||
'VonHeikemen/lsp-zero.nvim',
|
||||
branch = 'v2.x',
|
||||
requires = {
|
||||
-- LSP Support
|
||||
{ 'neovim/nvim-lspconfig' }, -- Required
|
||||
{
|
||||
-- Optional
|
||||
'williamboman/mason.nvim',
|
||||
run = function()
|
||||
vim.cmd [[MasonUpdate]]
|
||||
end,
|
||||
},
|
||||
{ 'williamboman/mason-lspconfig.nvim' }, -- Optional
|
||||
|
||||
-- Autocompletion
|
||||
{ 'hrsh7th/nvim-cmp' }, -- Required
|
||||
{ 'hrsh7th/cmp-nvim-lsp' }, -- Required
|
||||
{ 'L3MON4D3/LuaSnip' }, -- Required
|
||||
},
|
||||
|
||||
use('editorconfig/editorconfig-vim'),
|
||||
|
||||
-- For centering when I'm writing documents
|
||||
use { 'smithbm2316/centerpad.nvim' }
|
||||
}
|
||||
use 'wbthomason/packer.nvim'
|
||||
|
||||
-- Navigation
|
||||
use {
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.5',
|
||||
-- or , branch = '0.1.x',
|
||||
requires = { { 'nvim-lua/plenary.nvim' } }
|
||||
}
|
||||
|
||||
-- Colours
|
||||
use('ellisonleao/gruvbox.nvim')
|
||||
use({ 'rose-pine/neovim', as = 'rose-pine' })
|
||||
use({ 'bluz71/vim-moonfly-colors', as = 'moonfly' })
|
||||
|
||||
-- Treesitter
|
||||
use('nvim-treesitter/nvim-treesitter', { run = ':TSUpdate' })
|
||||
use('nvim-treesitter/playground')
|
||||
|
||||
-- Editing
|
||||
use('mbbill/undotree')
|
||||
use('tpope/vim-surround')
|
||||
use('tpope/vim-commentary')
|
||||
|
||||
-- LSP
|
||||
use {
|
||||
'VonHeikemen/lsp-zero.nvim',
|
||||
branch = 'v2.x',
|
||||
requires = {
|
||||
-- LSP Support
|
||||
{ 'neovim/nvim-lspconfig' }, -- Required
|
||||
{
|
||||
-- Optional
|
||||
'williamboman/mason.nvim',
|
||||
run = function()
|
||||
vim.cmd [[MasonUpdate]]
|
||||
end,
|
||||
},
|
||||
{ 'williamboman/mason-lspconfig.nvim' }, -- Optional
|
||||
|
||||
-- Autocompletion
|
||||
{ 'hrsh7th/nvim-cmp' }, -- Required
|
||||
{ 'hrsh7th/cmp-nvim-lsp' }, -- Required
|
||||
{ 'L3MON4D3/LuaSnip' }, -- Required
|
||||
},
|
||||
|
||||
use('editorconfig/editorconfig-vim'),
|
||||
|
||||
}
|
||||
|
||||
-- Document writing
|
||||
use { 'smithbm2316/centerpad.nvim' }
|
||||
|
||||
-- Tree
|
||||
use {
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
branch = "v3.x",
|
||||
requires = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"MunifTanjim/nui.nvim",
|
||||
-- "3rd/image.nvim", -- Optional image support in preview window: See `# Preview Mode` for more information
|
||||
},
|
||||
}
|
||||
end)
|
||||
|
Loading…
Reference in New Issue