From: Georgios Atheridis Date: Thu, 7 Jul 2022 06:31:46 +0000 (+0300) Subject: changed colorscheme X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=4990a7dee5ee91058650e0217a24a170469d93c1;p=configs%2Fneovim.git changed colorscheme --- diff --git a/nvim/lua/nvim/autopairs.lua b/nvim/lua/nvim/autopairs.lua index bdeb26a..fb89f92 100644 --- a/nvim/lua/nvim/autopairs.lua +++ b/nvim/lua/nvim/autopairs.lua @@ -63,4 +63,4 @@ end cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done({ map_char = { tex = "" } })) -- add a lisp filetype (wrap my-function), FYI: Hardcoded = { "clojure", "clojurescript", "fennel", "janet" } -cmp_autopairs.lisp[#cmp_autopairs.lisp + 1] = "racket" +-- cmp_autopairs.lisp[#cmp_autopairs.lisp + 1] = "racket" diff --git a/nvim/lua/nvim/colorscheme.lua b/nvim/lua/nvim/colorscheme.lua index 328ac47..fa148e5 100644 --- a/nvim/lua/nvim/colorscheme.lua +++ b/nvim/lua/nvim/colorscheme.lua @@ -1,10 +1,15 @@ -local status_ok, onedark = pcall(require, "onedark") -if not status_ok then - vim.notify("Error with colorscheme") - return -end +-- local status_ok, onedark = pcall(require, "onedark") +-- if not status_ok then +-- vim.notify("Error with colorscheme") +-- return +-- end +-- +-- onedark.setup({ +-- style = "deep", +-- }) +-- onedark.load() -onedark.setup({ - style = "deep", -}) -onedark.load() +-- vim.cmd('colorscheme paramount') +vim.cmd('set termguicolors') +vim.cmd('set background=light') +vim.cmd('colorscheme zenbones') diff --git a/nvim/lua/nvim/plugins.lua b/nvim/lua/nvim/plugins.lua index 81e8037..5e16660 100644 --- a/nvim/lua/nvim/plugins.lua +++ b/nvim/lua/nvim/plugins.lua @@ -59,6 +59,14 @@ return packer.startup(function(use) -- Colorschemes use("navarasu/onedark.nvim") + use("owickstrom/vim-colors-paramount") + use { + "mcchrish/zenbones.nvim", + -- Optionally install Lush. Allows for more configuration or extending the colorscheme + -- If you don't want to install lush, make sure to set g:zenbones_compat = 1 + -- In Vim, compat mode is turned on as Lush only works in Neovim. + requires = "rktjmp/lush.nvim" + } -- cmp Plugins use("hrsh7th/nvim-cmp")