diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-05-24 23:36:55 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-05-24 23:36:55 +0200 |
| commit | 32f6c95872f3307d09cbe299ce1b73e66905fa1d (patch) | |
| tree | 1cff401b07663cc5f9809f56fb5c85a71d3e7869 /.config/nvim/lua/user/pack.lua | |
| parent | dc725d6148b874b621d9d6ca9eaeab730925e173 (diff) | |
| parent | 4c049b3a71be4ee10b506f57bc558ea984d510d6 (diff) | |
| download | dotfiles-32f6c95872f3307d09cbe299ce1b73e66905fa1d.tar.gz dotfiles-32f6c95872f3307d09cbe299ce1b73e66905fa1d.zip | |
Merge commit '85542df5744896838cd2f3407ca74fac5557fc8d'
Diffstat (limited to '.config/nvim/lua/user/pack.lua')
| -rw-r--r-- | .config/nvim/lua/user/pack.lua | 42 |
1 files changed, 37 insertions, 5 deletions
diff --git a/.config/nvim/lua/user/pack.lua b/.config/nvim/lua/user/pack.lua index c45517d..256503e 100644 --- a/.config/nvim/lua/user/pack.lua +++ b/.config/nvim/lua/user/pack.lua @@ -133,9 +133,23 @@ return packer.startup(function(use) use("kyazdani42/nvim-tree.lua") -- File explorer use('ibhagwan/fzf-lua') -- Fuzzy finder use('ThePrimeagen/harpoon') - use("nvim-telescope/telescope.nvim") -- Fuzzy finder with lots of features/extendabilities + --use("nvim-telescope/telescope.nvim") -- Fuzzy finder with lots of features/extendabilities + use({ + 'nvim-telescope/telescope.nvim', + branch = '0.1.x', + --config = function() + -- require('plugins.telescope').setup() + --end, + requires = { + 'nvim-lua/plenary.nvim', + 'nvim-telescope/telescope-live-grep-args.nvim', + 'nvim-telescope/telescope-file-browser.nvim', + { 'nvim-telescope/telescope-fzf-native.nvim', run = 'make' }, + } + }) use({ "nvim-telescope/telescope-fzf-native.nvim", run = "make" }) -- Support fzf syntax/algorithm use("nvim-telescope/telescope-ui-select.nvim") -- + use("nvim-telescope/telescope-project.nvim") -- use("nvim-telescope/telescope-media-files.nvim") -- use("nvim-telescope/telescope-file-browser.nvim") -- use({ "nvim-telescope/telescope-symbols.nvim", after = "telescope.nvim" }) -- Search emoji(s) and other symbols @@ -217,6 +231,7 @@ return packer.startup(function(use) use("joshdick/onedark.vim") use("NTBBloodbath/doom-one.nvim") use("nyngwang/nvimgelion") + use("projekt0n/github-nvim-theme") -- UI use("kyazdani42/nvim-web-devicons") -- @@ -237,13 +252,30 @@ return packer.startup(function(use) }) use({ 'glepnir/dashboard-nvim', - event = 'VimEnter', + --event = 'VimEnter', requires = {'nvim-tree/nvim-web-devicons'} }) use("rcarriga/nvim-notify") -- Notification plugin use("karb94/neoscroll.nvim") -- Faster/smooth scrolling use("MunifTanjim/prettier.nvim") -- Prettier plugin for Neovim's built-in LSP client - use("norcalli/nvim-colorizer.lua") -- + use({ + 'norcalli/nvim-colorizer.lua', -- colorize hexa and rgb strings + cmd = { 'ColorizerToggle', 'ColorizerAttachToBuffer' }, + config = function() + require('colorizer').setup({ + --'*'; + user_default_options = { + RGB = true, + RRGGBB = true, + names = false, + RRGGBBAA = false, + css = false, + css_fn = true, + mode = 'foreground', + }, + }) + end + }) use( "j-hui/fidget.nvim") -- UI to show nvim-lsp progress use { "simrat39/symbols-outline.nvim", -- config = function() @@ -261,8 +293,8 @@ return packer.startup(function(use) }) use({ 'rebelot/heirline.nvim', -- Statusline that is highly configurable - requires = 'kyazdani42/nvim-web-devicons', - event = 'VimEnter', + --requires = 'kyazdani42/nvim-web-devicons', + --event = 'VimEnter', }) -- Language specific tools |
