mirror of
https://github.com/arkorty/Neolite.git
synced 2026-03-18 00:57:12 +00:00
people change.. taste change
This commit is contained in:
@@ -110,6 +110,7 @@ local plugins = {
|
||||
{ "williamboman/mason-lspconfig.nvim" },
|
||||
{ "neovim/nvim-lspconfig" },
|
||||
--{ "jose-elias-alvarez/null-ls.nvim" },
|
||||
{ "nvimtools/none-ls.nvim" },
|
||||
{ "L3MON4D3/LuaSnip" },
|
||||
{ "rafamadriz/friendly-snippets" },
|
||||
{ "hrsh7th/nvim-cmp" },
|
||||
@@ -137,6 +138,9 @@ local plugins = {
|
||||
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make" },
|
||||
},
|
||||
},
|
||||
|
||||
-- Language Support
|
||||
{ "https://github.com/ray-x/go.nvim" },
|
||||
}
|
||||
|
||||
-- options
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
local ok, _ = pcall(require, "hardhacker")
|
||||
local ok, _ = pcall(require, "onedark") -- check if the colorscheme package is installed
|
||||
if not ok then
|
||||
return
|
||||
end
|
||||
|
||||
-- setup must be called before loading
|
||||
vim.opt.termguicolors = true
|
||||
vim.cmd.colorscheme("hardhacker")
|
||||
vim.cmd.colorscheme("onedark")
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
local ok, null_ls = pcall(require, "null-ls")
|
||||
local ok, null_ls = pcall(require, "none-ls")
|
||||
if not ok then
|
||||
return
|
||||
end
|
||||
@@ -25,7 +25,7 @@ null_ls.setup({
|
||||
vim.lsp.buf.format({
|
||||
bufnr = bufnr,
|
||||
filter = function()
|
||||
return client.name == "null-ls"
|
||||
return client.name == "none-ls"
|
||||
end,
|
||||
})
|
||||
end,
|
||||
|
||||
Reference in New Issue
Block a user