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