From c285815a9fc8c0e14ea0714f8990694270c77c70 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Wed, 6 Nov 2024 13:55:15 -0500 Subject: iterm2 Colors and Emacs Config --- .config/nvim/lua/jacob/plugins.lua | 41 +++++++++++++++++++++----------------- 1 file changed, 23 insertions(+), 18 deletions(-) (limited to '.config/nvim/lua/jacob') diff --git a/.config/nvim/lua/jacob/plugins.lua b/.config/nvim/lua/jacob/plugins.lua index 70b52d5..9c99f82 100644 --- a/.config/nvim/lua/jacob/plugins.lua +++ b/.config/nvim/lua/jacob/plugins.lua @@ -2,12 +2,12 @@ local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not vim.loop.fs_stat(lazypath) then vim.fn.system({ - "git", - "clone", - "--filter=blob:none", - "https://github.com/folke/lazy.nvim.git", - "--branch=stable", -- latest stable release - lazypath, + "git", + "clone", + "--filter=blob:none", + "https://github.com/folke/lazy.nvim.git", + "--branch=stable", -- latest stable release + lazypath, }) end vim.opt.rtp:prepend(lazypath) @@ -23,23 +23,22 @@ require("lazy").setup({ branch = "harpoon2", dependencies = { "nvim-lua/plenary.nvim" } }, - --{ - -- "NLKNguyen/papercolor-theme", + { + "NLKNguyen/papercolor-theme", -- config = function() -- vim.cmd('set t_Co=256') -- vim.cmd('set background=light') -- vim.cmd('colorscheme PaperColor') -- end - --}, - { - 'folke/tokyonight.nvim', - priority = 1000, - init = function() - -- Like many other themes, this one has different styles, and you could load - -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme 'tokyonight-day' - end, - }, + }, + { + 'folke/tokyonight.nvim', + priority = 1000, + --init = function() + -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. + --vim.cmd.colorscheme 'tokyonight-day' + --end, + }, { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate", @@ -57,4 +56,10 @@ require("lazy").setup({ {'L3MON4D3/LuaSnip'}, {'williamboman/mason.nvim'}, {"mfussenegger/nvim-dap" }, + { + 'alljokecake/naysayer-theme.nvim', + init = function() + vim.cmd.colorscheme 'naysayer' + end, + }, }) -- cgit v1.2.3