recent updates
This commit is contained in:
@@ -18,6 +18,7 @@ require("lazy").setup({
|
||||
{ import = "lazyvim.plugins.extras.lang.rust" },
|
||||
-- { import = "lazyvim.plugins.extras.ui.mini-animate" },
|
||||
{ import = "lazyvim.plugins.extras.dap.core" },
|
||||
{ import = "lazyvim.plugins.extras.linting.eslint" },
|
||||
-- { import = "lazyvim.plugins.extras.editor.flash" },
|
||||
-- import/override with your plugins
|
||||
{ import = "plugins" },
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
local opt = vim.opt
|
||||
opt.autowriteall = true
|
||||
opt.colorcolumn = "100"
|
||||
opt.hidden = false
|
||||
-- opt.hidden = false
|
||||
opt.tabstop = 4
|
||||
opt.sidescrolloff = 0
|
||||
opt.shiftwidth = 4
|
||||
|
||||
@@ -6,6 +6,20 @@ return {
|
||||
-- { "mfussenegger/nvim-jdtls" },
|
||||
-- },
|
||||
opts = {
|
||||
servers = {
|
||||
eslint = {
|
||||
mason = false,
|
||||
},
|
||||
hls = {
|
||||
mason = false,
|
||||
},
|
||||
jdtls = {
|
||||
mason = false,
|
||||
},
|
||||
tsserver = {
|
||||
mason = false,
|
||||
}
|
||||
}
|
||||
-- autoformat = false,
|
||||
-- servers = {
|
||||
-- jdtls = {},
|
||||
|
||||
@@ -35,10 +35,10 @@ return {
|
||||
-- "L3MON4D3/LuaSnip",
|
||||
-- enabled = false,
|
||||
-- },
|
||||
{
|
||||
"rafamadriz/friendly-snippets",
|
||||
enabled = false,
|
||||
},
|
||||
-- {
|
||||
-- "rafamadriz/friendly-snippets",
|
||||
-- enabled = false,
|
||||
-- },
|
||||
-- {
|
||||
-- "ggandor/leap-spooky.nvim",
|
||||
-- enabled = true,
|
||||
@@ -90,7 +90,7 @@ return {
|
||||
local cmp = require("cmp")
|
||||
opts.sources = cmp.config.sources({
|
||||
{ name = "nvim_lsp" },
|
||||
-- { name = "luasnip" },
|
||||
{ name = "luasnip" },
|
||||
})
|
||||
return opts
|
||||
end,
|
||||
|
||||
Reference in New Issue
Block a user