before lunarvim
This commit is contained in:
parent
6967424521
commit
70ab54c5d7
7 changed files with 323 additions and 5 deletions
|
|
@ -1,5 +1,28 @@
|
|||
-- 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
|
||||
return {}
|
||||
require("custom.core.keymaps")
|
||||
require("custom.core.options")
|
||||
|
||||
return {
|
||||
'nvim-lua/popup.nvim',
|
||||
'christoomey/vim-tmux-navigator',
|
||||
'szw/vim-maximizer', -- maximizes and restores current window
|
||||
'tpope/vim-surround', -- add, delete, change surroundings (it's awesome)
|
||||
'vim-scripts/ReplaceWithRegister', -- replace with register contents using motion (gr + motion)
|
||||
'kyazdani42/nvim-web-devicons', -- vs-code like icons
|
||||
'hrsh7th/cmp-buffer', -- source for text in buffer,
|
||||
'hrsh7th/cmp-path', -- source for file system paths
|
||||
'rafamadriz/friendly-snippets', -- useful snippets
|
||||
{ "glepnir/lspsaga.nvim", branch = "main" }, -- enhanced lsp uis
|
||||
'jose-elias-alvarez/typescript.nvim', -- additional functionality for typescript server (e.g. rename file & update imports)
|
||||
'onsails/lspkind.nvim', -- vs-code like icons for autocompletion
|
||||
'jose-elias-alvarez/null-ls.nvim', -- configure formatters & linters
|
||||
'jayp0521/mason-null-ls.nvim', -- bridges gap b/w mason & null-ls
|
||||
{ "windwp/nvim-ts-autotag", after = "nvim-treesitter" }, -- autoclose tags
|
||||
'fedepujol/move.nvim', -- move line/block up/down
|
||||
'ThePrimeagen/harpoon', -- the name is... ThePrimeagen
|
||||
'MattesGroeger/vim-bookmarks', -- vim-bookmarks
|
||||
'tom-anders/telescope-vim-bookmarks.nvim', -- telescope-vim-bookmarks
|
||||
'tpope/vim-unimpaired', -- vim-unimpared
|
||||
-- 'nvim-telescope/telescope-media-files.nvim',
|
||||
'nvim-telescope/telescope-ui-select.nvim',
|
||||
'nvim-telescope/telescope-file-browser.nvim',
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue