style(nvim)

This commit is contained in:
thek4n 2024-04-25 09:04:09 +03:00
parent 898b5fea00
commit ddf28ab99e
3 changed files with 13 additions and 5 deletions

View File

@ -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

View File

@ -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,