explained all plugins
This commit is contained in:
@@ -9,8 +9,6 @@ vim.keymap.set('n', '<M-Right>', "<cmd>lua require('resize').ResizeRight()<CR>")
|
||||
vim.keymap.set('n', '<M-Up>', "<cmd>lua require('resize').ResizeUp()<CR>")
|
||||
vim.keymap.set('n', '<M-Down>', "<cmd>lua require('resize').ResizeDown()<CR>")
|
||||
|
||||
|
||||
|
||||
-- termunal interface shortcuts
|
||||
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
|
||||
-- Diagnostic keymaps
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
return {
|
||||
return { -- adds lsp functionality and api for included languages
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
dependencies = {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
return {
|
||||
return { -- adds more detailed bar below the pane
|
||||
'nvim-lualine/lualine.nvim',
|
||||
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
||||
config = function()
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
return {
|
||||
-- Collection of various small independent plugins/modules
|
||||
return { -- Collection of various small independent plugins/modules
|
||||
'echasnovski/mini.nvim',
|
||||
config = function()
|
||||
-- Better Around/Inside textobjects
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
return {
|
||||
return { -- add git tui functionality
|
||||
"NeogitOrg/neogit",
|
||||
lazy = true,
|
||||
dependencies = {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
return {
|
||||
return { -- adds a more in-depth file manager with support for syntax highlighting and more commands
|
||||
'nvim-tree/nvim-tree.lua',
|
||||
dependencies = {
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
return {
|
||||
return { -- syncronizes activity with Discord rich presence
|
||||
'andweeb/presence.nvim',
|
||||
auto_update = true, -- Update activity based on autocmd events (if `false`, map or manually execute `:lua package.loaded.presence:update()`)
|
||||
neovim_image_text = 'The One True Text Editor', -- Text displayed when hovered over the Neovim image
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
return {
|
||||
'nvim-telescope/telescope.nvim', tag = 'v0.2.0',
|
||||
dependencies = { 'nvim-lua/plenary.nvim', 'BurntSushi/ripgrep', 'sharkdp/fd' }
|
||||
}
|
||||
@@ -1,7 +1,5 @@
|
||||
-- Plugin: zaldih/themery.nvim
|
||||
-- Installed via store.nvim
|
||||
|
||||
return {
|
||||
return { -- adds a command to live view listed themes
|
||||
-- TODO dynamically update themes
|
||||
'zaldih/themery.nvim',
|
||||
lazy = false,
|
||||
config = function()
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
return {
|
||||
return { -- basic tree sitter parser support
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = {
|
||||
indent = { enable = true },
|
||||
|
||||
Reference in New Issue
Block a user