change colorscheme and add lazygit
This commit is contained in:
parent
1c44fad4a8
commit
63c3441f9b
51
init.lua
51
init.lua
|
@ -102,7 +102,7 @@ vim.g.have_nerd_font = false
|
||||||
vim.opt.number = true
|
vim.opt.number = true
|
||||||
-- You can also add relative line numbers, to help with jumping.
|
-- You can also add relative line numbers, to help with jumping.
|
||||||
-- Experiment for yourself to see if you like it!
|
-- Experiment for yourself to see if you like it!
|
||||||
-- vim.opt.relativenumber = true
|
vim.opt.relativenumber = true
|
||||||
|
|
||||||
-- Enable mouse mode, can be useful for resizing splits for example!
|
-- Enable mouse mode, can be useful for resizing splits for example!
|
||||||
vim.opt.mouse = 'a'
|
vim.opt.mouse = 'a'
|
||||||
|
@ -852,19 +852,56 @@ require('lazy').setup({
|
||||||
-- end,
|
-- end,
|
||||||
-- },
|
-- },
|
||||||
{
|
{
|
||||||
'scottmckendry/cyberdream.nvim',
|
'kdheepak/lazygit.nvim',
|
||||||
|
lazy = true,
|
||||||
|
cmd = {
|
||||||
|
'LazyGit',
|
||||||
|
'LazyGitConfig',
|
||||||
|
'LazyGitCurrentFile',
|
||||||
|
'LazyGitFilter',
|
||||||
|
'LazyGitFilterCurrentFile',
|
||||||
|
},
|
||||||
|
-- optional for floating window border decoration
|
||||||
|
dependencies = {
|
||||||
|
'nvim-lua/plenary.nvim',
|
||||||
|
},
|
||||||
|
-- setting the keybinding for LazyGit with 'keys' is recommended in
|
||||||
|
-- order to load the plugin when the command is run for the first time
|
||||||
|
keys = {
|
||||||
|
{ '<leader>lg', '<cmd>LazyGit<cr>', desc = 'LazyGit' },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'maxmx03/fluoromachine.nvim',
|
||||||
lazy = false,
|
lazy = false,
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
init = function()
|
|
||||||
vim.cmd.colorscheme 'cyberdream'
|
|
||||||
end,
|
|
||||||
config = function()
|
config = function()
|
||||||
require('cyberdream').setup {
|
local fm = require 'fluoromachine'
|
||||||
transparent = true,
|
|
||||||
|
fm.setup {
|
||||||
|
glow = true,
|
||||||
|
theme = 'fluoromachine',
|
||||||
|
transparent = false,
|
||||||
|
brightness = 0.2,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
vim.cmd.colorscheme 'fluoromachine'
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
-- {
|
-- {
|
||||||
|
-- 'scottmckendry/cyberdream.nvim',
|
||||||
|
-- lazy = false,
|
||||||
|
-- priority = 1000,
|
||||||
|
-- init = function()
|
||||||
|
-- vim.cmd.colorscheme 'cyberdream'
|
||||||
|
-- end,
|
||||||
|
-- config = function()
|
||||||
|
-- require('cyberdream').setup {
|
||||||
|
-- transparent = true,
|
||||||
|
-- }
|
||||||
|
-- end,
|
||||||
|
-- },
|
||||||
|
-- {
|
||||||
-- 'catppuccin/nvim',
|
-- 'catppuccin/nvim',
|
||||||
-- name = 'catppuccin',
|
-- name = 'catppuccin',
|
||||||
-- priority = 1000,
|
-- priority = 1000,
|
||||||
|
|
Loading…
Reference in New Issue