Major refactor of code completion, now very much nicer

This commit is contained in:
2023-09-04 15:26:51 +02:00
parent 56f3b08936
commit dfd2dda8d0
4 changed files with 92 additions and 91 deletions

View File

@@ -21,7 +21,7 @@ vim.opt.guifont = "DroidSansMono Nerd Font 11"
-- set colorscheme
vim.opt.termguicolors = true
vim.cmd([[
colorscheme slate
colorscheme tokyonight-night
]])
-- vim.cmd('source ~/.config/nvim/viml/plugins.vim')
@@ -162,15 +162,6 @@ require("mason-lspconfig").setup_handlers({
end,
})
local wilder = require("wilder")
wilder.setup({
modes = { ":", "/", "?" },
next_key = "<Tab>",
previous_key = "<S-Tab>",
accept_key = "<c-k>",
reject_key = "<Up>",
})
require("code-completion")
-- neovide configuration
@@ -180,4 +171,3 @@ if vim.g.neovide then
end
vim.cmd("source ~/.config/nvim/viml/legacyconf.vim")
vim.cmd("source ~/.config/nvim/viml/macros.vim")