Remove unused configuration files

This commit is contained in:
Sonny Bakker 2025-01-03 20:00:01 +01:00
parent 6115ca4be2
commit f61a044c86
3 changed files with 0 additions and 43 deletions

View file

@ -2,8 +2,6 @@
require('options')
require('lsp')
require('nvim-cmp')
require('auto-commands')
require('tree-sitter')
require('lua-line')
require('git-signs')

View file

@ -1,6 +0,0 @@
-- {{ ansible_managed }}
vim.api.nvim_create_autocmd('Filetype', {
pattern = 'TelescopeResults',
command = [[:setlocal nofoldenable]],
})

View file

@ -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' },
},
}