From a413b1592cd0f3aa1d872985f05360d180a627e0 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Thu, 9 Sep 2021 13:07:41 +0200 Subject: [PATCH] Removed commented lines --- init.lua | 69 -------------------------------------------------------- 1 file changed, 69 deletions(-) diff --git a/init.lua b/init.lua index 28259f3..c9f39f7 100644 --- a/init.lua +++ b/init.lua @@ -100,75 +100,6 @@ utils.map('n', 's', 'lua vim.lsp.buf.document_symbol()') require('nvim-lightbulb').update_lightbulb() -------------------- CMP ----------------------------------- require('cmp_plug') --- local cmp = require'cmp' --- cmp.setup({ --- snippet = { --- expand = function(args) --- vim.fn["vsnip#anonymous"](args.body) --- end, --- }, --- mapping = { --- [''] = cmp.mapping.confirm({ select = true }), --- }, --- sources = { --- { name = '...' }, --- ... --- } --- }) --- local cmp = require 'cmp' --- local types = require('cmp.types') --- cmp.setup { --- completion = { --- autocomplete = { --- types.cmp.TriggerEvent.TextChanged, --- }, --- completeopt = 'menu,menuone,noselect', --- keyword_pattern = [[\%(-\?\d\+\%(\.\d\+\)\?\|\h\w*\%(-\w*\)*\)]], --- keyword_length = 1, --- get_trigger_characters = function(trigger_characters) --- return trigger_characters --- end --- }, --- snippet = { --- expand = function(args) --- require('luasnip').lsp_expand(args.body) --- end, --- }, --- mapping = { --- [''] = cmp.mapping.select_prev_item(), --- [''] = cmp.mapping.select_next_item(), --- [''] = cmp.mapping.scroll_docs(-4), --- [''] = cmp.mapping.scroll_docs(4), --- [''] = cmp.mapping.complete(), --- [''] = cmp.mapping.close(), --- [''] = cmp.mapping.confirm { --- behavior = cmp.ConfirmBehavior.Replace, --- select = true, --- }, --- [''] = function(fallback) --- if vim.fn.pumvisible() == 1 then --- vim.fn.feedkeys(vim.api.nvim_replace_termcodes('', true, true, true), 'n') --- elseif luasnip.expand_or_jumpable() then --- vim.fn.feedkeys(vim.api.nvim_replace_termcodes('luasnip-expand-or-jump', true, true, true), '') --- else --- fallback() --- end --- end, --- [''] = function(fallback) --- if vim.fn.pumvisible() == 1 then --- vim.fn.feedkeys(vim.api.nvim_replace_termcodes('', true, true, true), 'n') --- elseif luasnip.jumpable(-1) then --- vim.fn.feedkeys(vim.api.nvim_replace_termcodes('luasnip-jump-prev', true, true, true), '') --- else --- fallback() --- end --- end, --- }, - -- sources = { - -- { name = 'nvim_lsp' }, - -- { name = 'luasnip' }, - -- }, --- } -------------------- NVIM-TREE ----------------------------- g.nvim_tree_auto_open = 1 -------------------- NVIM-COMMENT --------------------------