Removed commented lines
This commit is contained in:
parent
bf40b73417
commit
a413b1592c
69
init.lua
69
init.lua
@ -100,75 +100,6 @@ utils.map('n', '<space>s', '<cmd>lua vim.lsp.buf.document_symbol()<CR>')
|
||||
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 = {
|
||||
-- ['<C-y>'] = 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 = {
|
||||
-- ['<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 vim.fn.pumvisible() == 1 then
|
||||
-- vim.fn.feedkeys(vim.api.nvim_replace_termcodes('<C-n>', true, true, true), 'n')
|
||||
-- elseif luasnip.expand_or_jumpable() then
|
||||
-- vim.fn.feedkeys(vim.api.nvim_replace_termcodes('<Plug>luasnip-expand-or-jump', true, true, true), '')
|
||||
-- else
|
||||
-- fallback()
|
||||
-- end
|
||||
-- end,
|
||||
-- ['<S-Tab>'] = function(fallback)
|
||||
-- if vim.fn.pumvisible() == 1 then
|
||||
-- vim.fn.feedkeys(vim.api.nvim_replace_termcodes('<C-p>', true, true, true), 'n')
|
||||
-- elseif luasnip.jumpable(-1) then
|
||||
-- vim.fn.feedkeys(vim.api.nvim_replace_termcodes('<Plug>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 --------------------------
|
||||
|
Loading…
x
Reference in New Issue
Block a user