This commit is contained in:
Bryan Ramos 2024-08-09 00:00:58 -04:00
parent a090299119
commit d7d031bbe2
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
4 changed files with 41 additions and 22 deletions

View file

@ -8,6 +8,12 @@ require("which-key").add({
{ "<leader>t", "<cmd>:new | setlocal nonumber norelativenumber | resize 10 | terminal<CR>", mode = "n", desc = "Open Terminal" } { "<leader>t", "<cmd>:new | setlocal nonumber norelativenumber | resize 10 | terminal<CR>", mode = "n", desc = "Open Terminal" }
}) })
require("lualine").setup({
options = {
theme = 'iceberg_dark'
}
})
local lsp = require("lsp-zero").preset({}) local lsp = require("lsp-zero").preset({})
local cmp_nvim_lsp = require "cmp_nvim_lsp" local cmp_nvim_lsp = require "cmp_nvim_lsp"
local cmp = require("cmp") local cmp = require("cmp")

View file

@ -7,6 +7,12 @@ end
vim.opt.rtp:prepend(vim.env.LAZY or lazypath) vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
require("lazy").setup({ require("lazy").setup({
--config = function ()
-- vim.cmd([[
-- hi LazyNormal guibg=#060810 ctermbg=#060810
-- hi LazyProp guibg=NONE ctermbg=NONE
-- ]])
--end,
spec = { spec = {
-- add LazyVim and import its plugins -- add LazyVim and import its plugins
{ "LazyVim/LazyVim", import = "lazyvim.plugins" }, { "LazyVim/LazyVim", import = "lazyvim.plugins" },

View file

@ -27,4 +27,4 @@ vim.o.termguicolors = true
vim.opt.guicursor = "n-v-c:block,i:block,r:block" vim.opt.guicursor = "n-v-c:block,i:block,r:block"
vim.g.autoformat = false vim.g.autoformat = false
vim.cmd [[highlight PmenuSel guifg=#53565d guibg=#f0c981]] vim.cmd([[highlight PmenuSel guifg=#53565d guibg=#f0c981]])

View file

@ -8,8 +8,14 @@ return {
hi NonText guibg=NONE ctermbg=NONE hi NonText guibg=NONE ctermbg=NONE
hi LineNr guibg=NONE ctermbg=NONE hi LineNr guibg=NONE ctermbg=NONE
hi CursorLine guibg=NONE ctermbg=NONE hi CursorLine guibg=NONE ctermbg=NONE
hi CursorLineNr guibg=NONE ctermbg=NONE guifg=#FFCC66 ctermfg=Yellow cterm=bold hi CursorLineNr guibg=NONE ctermbg=NONE guifg=#E5C07B ctermfg=Yellow cterm=bold
hi GitGutterChange guibg=NONE 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, end,
}, },
@ -61,8 +67,9 @@ return {
end, end,
}, },
{ "NoahTheDuke/vim-just", ft = { "just" }, }, { "NoahTheDuke/vim-just", ft = { "just" } },
{ "L3MON4D3/LuaSnip", {
"L3MON4D3/LuaSnip",
version = "v2.*", version = "v2.*",
build = "make install_jsregexp", build = "make install_jsregexp",
--dependencies = { "rafamadriz/friendly-snippets" }, --dependencies = { "rafamadriz/friendly-snippets" },
@ -89,5 +96,5 @@ return {
{ "williamboman/mason-lspconfig.nvim", enabled = false }, { "williamboman/mason-lspconfig.nvim", enabled = false },
{ "jay-babu/mason-nvim-dap.nvim", enabled = false }, { "jay-babu/mason-nvim-dap.nvim", enabled = false },
{ "catppuccin/nvim", enabled = false }, { "catppuccin/nvim", enabled = false },
{ "folke/flash.nvim", enabled = false } { "folke/flash.nvim", enabled = false },
} }