Remove unused configuration files
This commit is contained in:
parent
6115ca4be2
commit
f61a044c86
3 changed files with 0 additions and 43 deletions
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
require('options')
|
require('options')
|
||||||
require('lsp')
|
require('lsp')
|
||||||
require('nvim-cmp')
|
|
||||||
require('auto-commands')
|
|
||||||
require('tree-sitter')
|
require('tree-sitter')
|
||||||
require('lua-line')
|
require('lua-line')
|
||||||
require('git-signs')
|
require('git-signs')
|
||||||
|
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
-- {{ ansible_managed }}
|
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd('Filetype', {
|
|
||||||
pattern = 'TelescopeResults',
|
|
||||||
command = [[:setlocal nofoldenable]],
|
|
||||||
})
|
|
||||||
|
|
@ -1,35 +0,0 @@
|
||||||
-- {{ ansible_managed }}
|
|
||||||
|
|
||||||
local cmp = require('cmp')
|
|
||||||
|
|
||||||
cmp.setup {
|
|
||||||
mapping = {
|
|
||||||
['<C-p>'] = cmp.mapping.select_prev_item(),
|
|
||||||
['<C-n>'] = cmp.mapping.select_next_item(),
|
|
||||||
['<C-d>'] = cmp.mapping.scroll_docs(-4),
|
|
||||||
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
|
||||||
['<C-Space>'] = cmp.mapping.complete(),
|
|
||||||
['<C-e>'] = cmp.mapping.close(),
|
|
||||||
['<CR>'] = cmp.mapping.confirm {
|
|
||||||
behavior = cmp.ConfirmBehavior.Replace,
|
|
||||||
select = true,
|
|
||||||
},
|
|
||||||
['<Tab>'] = function(fallback)
|
|
||||||
if cmp.visible() then
|
|
||||||
cmp.select_next_item()
|
|
||||||
else
|
|
||||||
fallback()
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
['<S-Tab>'] = function(fallback)
|
|
||||||
if cmp.visible() then
|
|
||||||
cmp.select_prev_item()
|
|
||||||
else
|
|
||||||
fallback()
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
sources = {
|
|
||||||
{ name = 'nvim_lsp' },
|
|
||||||
},
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue