From d7d031bbe2501c57ac187515c630356287a1fb09 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Fri, 9 Aug 2024 00:00:58 -0400 Subject: [PATCH] changes --- .../config/lazyvim/lua/config/autocmds.lua | 6 +++ .../neovim/config/lazyvim/lua/config/lazy.lua | 6 +++ .../config/lazyvim/lua/config/options.lua | 2 +- .../config/lazyvim/lua/plugins/core.lua | 49 +++++++++++-------- 4 files changed, 41 insertions(+), 22 deletions(-) diff --git a/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/autocmds.lua b/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/autocmds.lua index 6b7c622..b844bf5 100644 --- a/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/autocmds.lua +++ b/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/autocmds.lua @@ -8,6 +8,12 @@ require("which-key").add({ { "t", ":new | setlocal nonumber norelativenumber | resize 10 | terminal", mode = "n", desc = "Open Terminal" } }) +require("lualine").setup({ + options = { + theme = 'iceberg_dark' + } +}) + local lsp = require("lsp-zero").preset({}) local cmp_nvim_lsp = require "cmp_nvim_lsp" local cmp = require("cmp") diff --git a/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/lazy.lua b/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/lazy.lua index 51350ad..6bf2050 100644 --- a/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/lazy.lua +++ b/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/lazy.lua @@ -7,6 +7,12 @@ end vim.opt.rtp:prepend(vim.env.LAZY or lazypath) require("lazy").setup({ + --config = function () + -- vim.cmd([[ + -- hi LazyNormal guibg=#060810 ctermbg=#060810 + -- hi LazyProp guibg=NONE ctermbg=NONE + -- ]]) + --end, spec = { -- add LazyVim and import its plugins { "LazyVim/LazyVim", import = "lazyvim.plugins" }, diff --git a/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/options.lua b/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/options.lua index a058f5f..b113093 100644 --- a/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/options.lua +++ b/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/options.lua @@ -27,4 +27,4 @@ vim.o.termguicolors = true vim.opt.guicursor = "n-v-c:block,i:block,r:block" vim.g.autoformat = false -vim.cmd [[highlight PmenuSel guifg=#53565d guibg=#f0c981]] +vim.cmd([[highlight PmenuSel guifg=#53565d guibg=#f0c981]]) diff --git a/src/user/modules/utils/modules/neovim/config/lazyvim/lua/plugins/core.lua b/src/user/modules/utils/modules/neovim/config/lazyvim/lua/plugins/core.lua index 52fd6cb..9a71269 100644 --- a/src/user/modules/utils/modules/neovim/config/lazyvim/lua/plugins/core.lua +++ b/src/user/modules/utils/modules/neovim/config/lazyvim/lua/plugins/core.lua @@ -3,13 +3,19 @@ return { "chriskempson/base16-vim", config = function() vim.cmd("colorscheme base16-onedark") - vim.cmd([[ + vim.cmd([[ hi Normal guibg=NONE ctermbg=NONE hi NonText guibg=NONE ctermbg=NONE hi LineNr guibg=NONE ctermbg=NONE hi CursorLine guibg=NONE ctermbg=NONE - hi CursorLineNr guibg=NONE ctermbg=NONE guifg=#FFCC66 ctermfg=Yellow cterm=bold - hi GitGutterChange guibg=NONE + hi CursorLineNr guibg=NONE ctermbg=NONE guifg=#E5C07B ctermfg=Yellow cterm=bold + hi GitGutterChange guibg=NONE ctermbg=NONE + hi GitGutterAdd guibg=NONE ctermbg=NONE + hi GitGutterDelete guibg=NONE ctermbg=NONE + hi WinSeparator guibg=NONE ctermbg=NONE + "hi LazyNormal guibg=#060810 ctermbg=#060810 + "hi LazyProp guibg=NONE ctermbg=NONE + "hi WhichKeyNormal guibg=#060810 ctermbg=#060810 ]]) end, }, @@ -49,24 +55,25 @@ return { end, }, - { - "nvim-neo-tree/neo-tree.nvim", - config = function() - require("neo-tree").setup({ - window = { - position = "left", - width = 20, - }, - }) - end, - }, + { + "nvim-neo-tree/neo-tree.nvim", + config = function() + require("neo-tree").setup({ + window = { + position = "left", + width = 20, + }, + }) + end, + }, - { "NoahTheDuke/vim-just", ft = { "just" }, }, - { "L3MON4D3/LuaSnip", - version = "v2.*", - build = "make install_jsregexp", - --dependencies = { "rafamadriz/friendly-snippets" }, - }, + { "NoahTheDuke/vim-just", ft = { "just" } }, + { + "L3MON4D3/LuaSnip", + version = "v2.*", + build = "make install_jsregexp", + --dependencies = { "rafamadriz/friendly-snippets" }, + }, --[[ { @@ -89,5 +96,5 @@ return { { "williamboman/mason-lspconfig.nvim", enabled = false }, { "jay-babu/mason-nvim-dap.nvim", enabled = false }, { "catppuccin/nvim", enabled = false }, - { "folke/flash.nvim", enabled = false } + { "folke/flash.nvim", enabled = false }, }