mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -04:00
changes
This commit is contained in:
parent
a090299119
commit
d7d031bbe2
4 changed files with 41 additions and 22 deletions
|
|
@ -8,6 +8,12 @@ require("which-key").add({
|
|||
{ "<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 cmp_nvim_lsp = require "cmp_nvim_lsp"
|
||||
local cmp = require("cmp")
|
||||
|
|
|
|||
|
|
@ -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" },
|
||||
|
|
|
|||
|
|
@ -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]])
|
||||
|
|
|
|||
|
|
@ -8,8 +8,14 @@ return {
|
|||
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,
|
||||
},
|
||||
|
|
@ -61,8 +67,9 @@ return {
|
|||
end,
|
||||
},
|
||||
|
||||
{ "NoahTheDuke/vim-just", ft = { "just" }, },
|
||||
{ "L3MON4D3/LuaSnip",
|
||||
{ "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 },
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue