diff --git a/lazy-lock.json b/lazy-lock.json index 9da4ac5..5804cee 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -9,7 +9,7 @@ "gitsigns.nvim": { "branch": "main", "commit": "6bd29494e3f79ff08be1d35bc1926ed23c22ed9a" }, "gruvbox.nvim": { "branch": "main", "commit": "5e0a460d8e0f7f669c158dedd5f9ae2bcac31437" }, "harpoon": { "branch": "harpoon2", "commit": "87b1a3506211538f460786c23f98ec63ad9af4e5" }, - "hererocks": { "branch": "master", "commit": "88ef4650f1e62bb9a9f931eab024b2a167f17a5a" }, + "hererocks": { "branch": "master", "commit": "3856f1b4fb69a9f683f1eb146a4cd49a67478419" }, "indent-blankline.nvim": { "branch": "master", "commit": "005b56001b2cb30bfa61b7986bc50657816ba4ba" }, "lazy.nvim": { "branch": "main", "commit": "85c7ff3711b730b4030d03144f6db6375044ae82" }, "lazydev.nvim": { "branch": "main", "commit": "5231c62aa83c2f8dc8e7ba957aa77098cda1257d" }, diff --git a/lua/crentist/filetype.lua b/lua/crentist/filetype.lua index 601db98..08e8796 100644 --- a/lua/crentist/filetype.lua +++ b/lua/crentist/filetype.lua @@ -3,10 +3,10 @@ vim.filetype.add({ ['tf'] = 'terraform', }, pattern = { - ['.*/playbooks/.*%.ya?ml'] = 'yaml.ansible', - ['.*/roles/.*%.ya?ml'] = 'yaml.ansible', - ['.*/tasks/.*%.ya?ml'] = 'yaml.ansible', - ['.*/plays/.*%.ya?ml'] = 'yaml.ansible', + ['.*/playbooks/.*%.ya?ml'] = 'yaml_ansible', + ['.*/roles/.*%.ya?ml'] = 'yaml_ansible', + ['.*/tasks/.*%.ya?ml'] = 'yaml_ansible', + ['.*/plays/.*%.ya?ml'] = 'yaml_ansible', }, }) @@ -20,8 +20,8 @@ vim.filetype.add({ vim.filetype.add({ pattern = { - ['%.gitlab%-ci%.ya?ml'] = 'yaml.gitlab', - ['pipelines/.*%.ya?ml'] = 'yaml.gitlab', + ['%.gitlab%-ci%.ya?ml'] = 'yaml_gitlab', + ['pipelines/.*%.ya?ml'] = 'yaml_gitlab', }, }) diff --git a/lua/crentist/lazy/parrot.lua b/lua/crentist/lazy/parrot.lua index d9ebcf7..1b06310 100644 --- a/lua/crentist/lazy/parrot.lua +++ b/lua/crentist/lazy/parrot.lua @@ -9,7 +9,7 @@ return { name = 'anthropic', endpoint = 'https://api.anthropic.com/v1/messages', model_endpoint = 'https://api.anthropic.com/v1/models', - api_key = { '/usr/local/bin/sops', '--config', '/dev/null', '-d', vim.fn.expand('$HOME') .. '/.claude-api' }, + api_key = { 'sops', '--config', '/dev/null', '-d', vim.fn.expand('$HOME') .. '/.claude-api' }, headers = function(self) return { ['Content-Type'] = 'application/json', diff --git a/lua/crentist/set.lua b/lua/crentist/set.lua index de3c07c..425eeee 100644 --- a/lua/crentist/set.lua +++ b/lua/crentist/set.lua @@ -34,3 +34,5 @@ vim.opt.colorcolumn = "80" vim.opt.diffopt = 'internal,filler,closeoff,algorithm:histogram' +vim.opt.mouse = '' +