Remove lua and replace pylsp
This commit is contained in:
parent
a3983ae9c5
commit
2143b6d5a1
|
@ -488,3 +488,9 @@ endsnippet
|
|||
snippet cc "Cite" iA
|
||||
\\cite{$1}$0
|
||||
endsnippet
|
||||
|
||||
snippet setenv "Set Environment around Text" b
|
||||
\\begin{$1}
|
||||
${VISUAL}
|
||||
\\end{$1}$0
|
||||
endsnippet
|
||||
|
|
|
@ -54,7 +54,7 @@ cmp.setup({
|
|||
{ name = "path" },
|
||||
{ name = "nvim_lsp", keyword_length = 2 },
|
||||
{ name = "nvim_lsp_signature_help" },
|
||||
{ name = "nvim_lua", keyword_length = 2 },
|
||||
-- { name = "nvim_lua", keyword_length = 2 },
|
||||
{ name = "buffer", keyword_length = 2 },
|
||||
{ name = "calc" },
|
||||
{ name = "lua-latex-symbols", option = { cache = true } },
|
||||
|
@ -131,4 +131,3 @@ cmp.setup.cmdline(":", {
|
|||
end,
|
||||
},
|
||||
})
|
||||
|
||||
|
|
|
@ -45,9 +45,6 @@ vim.g.NERDTreeDirArrowCollapsible = "▾"
|
|||
vim.g.gitblame_message_template = " => <author> • <date> • <summary>"
|
||||
vim.g.gitblame_date_format = "%r"
|
||||
|
||||
-- Intendation basics
|
||||
require("ibl").setup()
|
||||
|
||||
-- Code completion
|
||||
require("code-completion")
|
||||
|
||||
|
|
|
@ -34,7 +34,6 @@ return {
|
|||
"yannickreiss/nvim-doxyscan",
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
{ "romgrk/barbar.nvim", wants = "nvim-web-devicons" },
|
||||
{ "lukas-reineke/indent-blankline.nvim", main = "ibl", opts = {} },
|
||||
"dstein64/vim-startuptime",
|
||||
"mhinz/vim-startify",
|
||||
"folke/tokyonight.nvim",
|
||||
|
|
|
@ -39,3 +39,4 @@ vim.opt.mouse = ""
|
|||
-- set copy mode
|
||||
vim.keymap.set("n", "<leader>ll", ":set nonumber<cr>")
|
||||
vim.keymap.set("n", "<leader>lm", ":set number<cr>")
|
||||
|
||||
|
|
Loading…
Reference in New Issue