Add pkl binary and nvim-plugin
This commit is contained in:
parent
98d64b5e0e
commit
dffe33e507
4 changed files with 10 additions and 1 deletions
|
@ -38,6 +38,12 @@ target = "eza"
|
|||
pipe = "tar xzO"
|
||||
groups = ["base"]
|
||||
|
||||
[[ autoinstall ]]
|
||||
type = "exe"
|
||||
source = "https://github.com/apple/pkl/releases/download/0.25.2/pkl-linux-amd64"
|
||||
target = "pkl"
|
||||
groups = ["base"]
|
||||
|
||||
[[autoinstall]]
|
||||
type = "exe"
|
||||
source = "https://git.serguzim.me/serguzim/tools/releases/download/latest/autostart-manage"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
require'nvim-treesitter.configs'.setup {
|
||||
-- A list of parser names, or "all" (the five listed parsers should always be installed)
|
||||
ensure_installed = { "c", "lua", "vim", "vimdoc", "query" },
|
||||
ensure_installed = { "c", "lua", "pkl", "query", "vim", "vimdoc" },
|
||||
|
||||
-- Install parsers synchronously (only applied to `ensure_installed`)
|
||||
sync_install = false,
|
||||
|
|
|
@ -17,6 +17,7 @@ return require('packer').startup(function(use)
|
|||
'nvim-treesitter/nvim-treesitter',
|
||||
run = ':TSUpdate'
|
||||
})
|
||||
use("apple/pkl-neovim")
|
||||
|
||||
use("github/copilot.vim")
|
||||
use("mbbill/undotree")
|
||||
|
|
|
@ -34,6 +34,8 @@ vim.opt.updatetime = 50
|
|||
|
||||
vim.opt.colorcolumn = "80"
|
||||
|
||||
vim.opt.foldenable = false
|
||||
|
||||
|
||||
vim.api.nvim_create_autocmd('TextYankPost', {
|
||||
group = vim.api.nvim_create_augroup('highlight_yank', {}),
|
||||
|
|
Loading…
Reference in a new issue