markdown updated plugins
This commit is contained in:
@ -16,7 +16,7 @@ nvim_treesitter.setup {
|
||||
-- A list of parser names, or "all"
|
||||
ensure_installed = {
|
||||
'bash', 'css', 'html', 'javascript', 'json', 'lua', 'python',
|
||||
'vim', 'yaml',
|
||||
'vim', 'yaml', 'typescript',
|
||||
},
|
||||
-- Install parsers synchronously (only applied to `ensure_installed`)
|
||||
sync_install = false,
|
||||
|
||||
@ -51,7 +51,9 @@ return require'packer'.startup(function()
|
||||
------------------------------------------------------------
|
||||
-- General Functionality
|
||||
------------------------------------------------------------
|
||||
|
||||
|
||||
-- Tmux Navigation
|
||||
use 'aserowy/tmux.nvim'
|
||||
-- Find & Search LSP Tags
|
||||
use 'liuchengxu/vista.vim'
|
||||
-- Snippets
|
||||
@ -72,11 +74,12 @@ return require'packer'.startup(function()
|
||||
}
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
use {
|
||||
'windwp/nvim-autopairs',
|
||||
config = function()
|
||||
require('nvim-autopairs').setup()
|
||||
require('nvim-autopairs').setup({
|
||||
})
|
||||
end
|
||||
}
|
||||
|
||||
@ -106,11 +109,11 @@ return require'packer'.startup(function()
|
||||
MkdnTableNextCell = false,
|
||||
MkdnTab = {{'i',}, '<Tab>'},
|
||||
MkdnSTab = {{'i'}, '<S-Tab>'},
|
||||
MkdnFollowLink = {'n', '<leader>p'}
|
||||
}
|
||||
})
|
||||
end
|
||||
})
|
||||
|
||||
-- Headlines Extension
|
||||
use 'lukas-reineke/headlines.nvim'
|
||||
|
||||
@ -127,7 +130,7 @@ return require'packer'.startup(function()
|
||||
use 'chentoast/marks.nvim'
|
||||
|
||||
-- Prettier Plugin for Neovim specifically
|
||||
-- use'MunifTanjim/prettier.nvim'
|
||||
use'MunifTanjim/prettier.nvim'
|
||||
|
||||
---------------------------------------------------------
|
||||
-- Text, Icons, Symbols
|
||||
@ -143,16 +146,17 @@ return require'packer'.startup(function()
|
||||
|
||||
-- Allow Popups for Telescope etc
|
||||
--use 'nvim-lua/popup.nvim'
|
||||
use 'nvim-lua/plenary.nvim'
|
||||
|
||||
-- Todo & Comments for Organization
|
||||
use {
|
||||
"folke/todo-comments.nvim",
|
||||
requires = "nvim-lua/plenary.nvim",
|
||||
config = function()
|
||||
require("todo-comments").setup {
|
||||
}
|
||||
end
|
||||
}
|
||||
"folke/todo-comments.nvim",
|
||||
requires = "nvim-lua/plenary.nvim",
|
||||
config = function()
|
||||
require("todo-comments").setup {
|
||||
}
|
||||
end
|
||||
}
|
||||
|
||||
-----------------------------------------------------------
|
||||
-- Various Color Schemes, Dashboard, etc
|
||||
|
||||
11
lua/plugins/tmux.lua
Normal file
11
lua/plugins/tmux.lua
Normal file
@ -0,0 +1,11 @@
|
||||
local tmux_installer = require("tmux").setup({
|
||||
copy_sync = {
|
||||
enable = true,
|
||||
},
|
||||
navigation = {
|
||||
enable_default_keybindings = true,
|
||||
},
|
||||
resize = {
|
||||
enable_default_keybindings = true,
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user