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

View File

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