style(nvim)
This commit is contained in:
parent
898b5fea00
commit
ddf28ab99e
@ -1,7 +1,6 @@
|
||||
return {
|
||||
'tpope/vim-repeat',
|
||||
'google/vim-searchindex',
|
||||
'rbgrouleff/bclose.vim',
|
||||
'preservim/vim-pencil',
|
||||
{
|
||||
'windwp/nvim-autopairs',
|
||||
@ -62,6 +61,8 @@ return {
|
||||
},
|
||||
{
|
||||
"thek4n/postman.nvim",
|
||||
keys = {"<leader>rl"},
|
||||
cmd = {"PostmanExec"},
|
||||
config = function()
|
||||
vim.keymap.set("n", "<Leader>rl", '<cmd>PostmanExec<CR>')
|
||||
end
|
||||
|
||||
@ -34,6 +34,7 @@ return {
|
||||
event = "VeryLazy",
|
||||
config = function()
|
||||
require("lualine").setup({
|
||||
theme = "tokyonight",
|
||||
options = {
|
||||
component_separators = { left = '', right = '' },
|
||||
},
|
||||
@ -81,19 +82,25 @@ return {
|
||||
},
|
||||
{
|
||||
'EdenEast/nightfox.nvim',
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
lazy = true,
|
||||
config = function()
|
||||
local colorscheme = require("nightfox")
|
||||
colorscheme.compile()
|
||||
colorscheme.setup()
|
||||
vim.cmd.colorscheme("nightfox")
|
||||
end
|
||||
},
|
||||
{
|
||||
'ellisonleao/gruvbox.nvim',
|
||||
lazy = true,
|
||||
},
|
||||
{
|
||||
"folke/tokyonight.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme("tokyonight")
|
||||
end
|
||||
},
|
||||
{
|
||||
'xiyaowong/transparent.nvim',
|
||||
lazy = false,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user