feat: better file integrations

This commit is contained in:
Price Hiller 2023-01-23 14:09:47 -06:00
parent 5147bff675
commit bfcef8ef91
3 changed files with 11 additions and 2 deletions

View File

@ -7,6 +7,7 @@ nvim_tree.setup({
disable = {
-- Ansible support reasons
'ansible.yaml',
'yaml.ansible'
},
},
matchup = {

View File

@ -211,6 +211,11 @@ lspconfig.pylsp.setup({
lspconfig.yamlls.setup({
settings = {
redhat = {
telemetry = {
enabled = false
}
},
yaml = {
schemas = {
["https://json.schemastore.org/github-workflow.json"] = "/.github/workflows/*",
@ -234,6 +239,10 @@ lspconfig.yamlls.setup({
"host_vars/*.y*l",
"group_vars/*.y*l",
},
kubernetes = {
"*.k8s",
"*.k8s.*"
}
},
},
},

View File

@ -615,8 +615,7 @@ lazy.setup({
-- Http Request Support
{
"NTBBloodbath/rest.nvim",
event = "VeryLazy",
"rest-nvim/rest.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
},