diff options
| author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-11-03 13:39:12 +0100 | 
|---|---|---|
| committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-11-03 13:39:12 +0100 | 
| commit | 8a4d4db609f2ab37ae7e54b4210535c09eeb0e6c (patch) | |
| tree | 2f5b74dcfa157994f962cb68e1de998f0d18824d /config/essentials | |
| parent | faf6d4b320451f154a3538fc38c9a3157fd0f351 (diff) | |
cleanup
Diffstat (limited to 'config/essentials')
| -rw-r--r-- | config/essentials/nvim/lua/user/packer.lua | 49 | 
1 files changed, 20 insertions, 29 deletions
diff --git a/config/essentials/nvim/lua/user/packer.lua b/config/essentials/nvim/lua/user/packer.lua index ed2bbf1..8091d85 100644 --- a/config/essentials/nvim/lua/user/packer.lua +++ b/config/essentials/nvim/lua/user/packer.lua @@ -4,11 +4,11 @@ return require('packer').startup(function(use)  	-- files  	use {  		'nvim-telescope/telescope.nvim', tag = '0.1.2', -		requires = { {'nvim-lua/plenary.nvim'} } +		requires = { { 'nvim-lua/plenary.nvim' } }  	} -	use {'nvim-telescope/telescope-fzf-native.nvim', run = 'make' } -	use {'nvim-telescope/telescope-ui-select.nvim' } -	use {'nvim-telescope/telescope-media-files.nvim'} +	use { 'nvim-telescope/telescope-fzf-native.nvim', run = 'make' } +	use { 'nvim-telescope/telescope-ui-select.nvim' } +	use { 'nvim-telescope/telescope-media-files.nvim' }  	use('nvim-telescope/telescope-symbols.nvim')  	use('theprimeagen/harpoon') @@ -18,20 +18,11 @@ return require('packer').startup(function(use)  	use { 'uZer/pywal16.nvim', as = 'pywal16' }  	use('norcalli/nvim-colorizer.lua') -	use('nvim-treesitter/nvim-treesitter', {run = ':TSUpdate'}) +	use('nvim-treesitter/nvim-treesitter', { run = ':TSUpdate' })  	use('nvim-treesitter/playground')  	use('theRealCarneiro/hyprland-vim-syntax')  	use('mbbill/undotree') -	use { -		"nvim-neo-tree/neo-tree.nvim", -		branch = "v3.x", -		requires = { -			"nvim-lua/plenary.nvim", -			"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended -			"MunifTanjim/nui.nvim", -		} -	}  	use('tpope/vim-capslock')  	use('tpope/vim-commentary') @@ -45,20 +36,20 @@ return require('packer').startup(function(use)  	use('christoomey/vim-tmux-navigator') -    -- utils -    use('godlygeek/tabular') -    use('renerocksai/calendar-vim') -    use('ojroques/vim-oscyank', {branch = "main"}) -    use("potamides/pantran.nvim") -    use('alx741/vinfo') -    use('sheerun/vim-polyglot') -    -- use('github/copilot.vim') -    -- -    use { -        'https://gitlab.com/itaranto/plantuml.nvim', -        tag = '*', -        config = function() require('plantuml').setup() end -    } +	-- utils +	use('godlygeek/tabular') +	use('renerocksai/calendar-vim') +	use('ojroques/vim-oscyank', { branch = "main" }) +	use("potamides/pantran.nvim") +	use('alx741/vinfo') +	use('sheerun/vim-polyglot') +	-- use('github/copilot.vim') +	-- +	use { +		'https://gitlab.com/itaranto/plantuml.nvim', +		tag = '*', +		config = function() require('plantuml').setup() end +	}  	-- objects  	use('michaeljsmith/vim-indent-object') @@ -76,7 +67,7 @@ return require('packer').startup(function(use)  	-- debugging  	use('mfussenegger/nvim-dap') -	use { "rcarriga/nvim-dap-ui", requires = {"mfussenegger/nvim-dap"} } +	use { "rcarriga/nvim-dap-ui", requires = { "mfussenegger/nvim-dap" } }  	-- java  	use('mfussenegger/nvim-jdtls')  | 
