This commit is contained in:
Lee Tang
2022-03-15 23:53:25 +08:00
parent aec27520ca
commit 3a86f8ebc2
25 changed files with 4329 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ return {
yaml = {
schemas = {
['https://json.schemastore.org/github-workflow.json'] = '/.github/workflows/*',
Kubernetes = '/*k8s.yaml',
Kubernetes = { '/*k8s.yaml', '/*k8s.yml' },
},
},
},

View File

@@ -28,7 +28,7 @@ end
function _G.set_terminal_keymaps()
local opts = { noremap = true }
vim.api.nvim_buf_set_keymap(0, 't', '<C-o>', [[<C-\><C-n><C-w>]], opts)
vim.api.nvim_buf_set_keymap(0, 't', '<C-b>', [[<C-\><C-n><C-w>]], opts)
--vim.api.nvim_buf_set_keymap(0, 't', 'jk', [[<C-\><C-n>]], opts)
--vim.api.nvim_buf_set_keymap(0, 't', '<C-h>', [[<C-\><C-n><C-W>h]], opts)
--vim.api.nvim_buf_set_keymap(0, 't', '<C-j>', [[<C-\><C-n><C-W>j]], opts)