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 = { disable = {
-- Ansible support reasons -- Ansible support reasons
'ansible.yaml', 'ansible.yaml',
'yaml.ansible'
}, },
}, },
matchup = { matchup = {

View File

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

View File

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