Add: first import
This commit is contained in:
commit
82641f61be
23 changed files with 800 additions and 0 deletions
24
lua/plugins/basic.lua
Normal file
24
lua/plugins/basic.lua
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
return {
|
||||
{
|
||||
"nvim-lua/plenary.nvim", -- lua functions that many plugins use
|
||||
},
|
||||
{
|
||||
"christoomey/vim-tmux-navigator", -- tmux & split window navigation
|
||||
},
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
build = ":TSUpdate",
|
||||
config = function()
|
||||
require("nvim-treesitter.configs").setup({
|
||||
ensure_installed = { "lua", "python", "bash", "markdown" }, -- Parsers à installer
|
||||
sync_install = false,
|
||||
auto_install = true,
|
||||
highlight = {
|
||||
enable = true,
|
||||
additional_vim_regex_highlighting = false,
|
||||
},
|
||||
indent = { enable = true },
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue