1
0

Migrated Plugin System to noevim 0.12

This commit is contained in:
2026-04-10 17:33:22 +02:00
parent 4af1b08d63
commit e2006fd023
6 changed files with 11 additions and 12 deletions

View File

@@ -2,9 +2,9 @@
vim.api.nvim_exec2('language POSIX', {})
-- }}}
-- Source plugins if they exist {{{
pcall(require, 'mini-pick')
--pcall(require, 'treesitter')
-- Plugins {{{
vim.pack.add({'https://github.com/nvim-mini/mini.pick'})
pcall(function() require('mini.pick').setup() end)
-- }}}
-- General Editor Settings {{{

View File

@@ -1 +0,0 @@
require('mini.pick').setup()

View File

@@ -1,6 +0,0 @@
require('nvim-treesitter.install').prefer_git = true
require('nvim-treesitter.configs').setup {
auto_install = true,
highlight = { enable = true },
indent = { enable = true }
}

8
nvim-pack-lock.json Normal file
View File

@@ -0,0 +1,8 @@
{
"plugins": {
"mini.pick": {
"rev": "437d44eb57312f23e6b931704694fc294922cd88",
"src": "https://github.com/nvim-mini/mini.pick"
}
}
}