1
0
Fork 0
vdotfiles/cli/.config/nvim/lua/plugins.lua

55 lines
1.8 KiB
Lua
Raw Normal View History

2023-09-13 22:57:25 +03:00
-- [[ plugins bootstrap ]]
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
2023-09-26 09:31:22 +03:00
local lazyurl = "https://github.com/folke/lazy.nvim.git"
2024-02-02 12:46:24 +02:00
local lazycmd = {"git", "clone", "--filter=blob:none", "--branch=stable", lazyurl, lazypath}
2023-09-26 09:31:22 +03:00
if not vim.loop.fs_stat(lazypath) then vim.fn.system(lazycmd) end
2023-09-13 22:57:25 +03:00
vim.opt.rtp:prepend(lazypath)
--[[ plugins list ]]
require('lazy').setup {
2024-01-05 17:34:44 +02:00
{'kdheepak/lazygit.nvim', dependencies = {'nvim-lua/plenary.nvim'}},
2023-10-16 19:34:19 +03:00
{'lifepillar/vim-gruvbox8', branch = 'neovim'},
2023-09-13 22:57:25 +03:00
{'lifepillar/vim-solarized8', branch = 'neovim'},
{'nvim-telescope/telescope.nvim', dependencies = {'nvim-lua/plenary.nvim'}},
{'nvim-treesitter/nvim-treesitter', cmd = 'TSUpdate'},
{'w0rp/ale', cmd = 'ALEEnable', ft = {'bash', 'go', 'lua', 'python', 'sh', 'zsh'}},
2023-09-13 22:57:25 +03:00
'lewis6991/gitsigns.nvim',
'lifepillar/vim-cheat40',
2024-02-02 12:46:24 +02:00
'nvim-lualine/lualine.nvim',
2023-09-13 22:57:25 +03:00
'tpope/vim-rsi',
'tpope/vim-vinegar',
}
2022-12-26 01:31:15 +02:00
--[[ plugin configs and maps ]]
require('gitsigns').setup()
require('nvim-treesitter.configs').setup {
highlight = {
enable = true
}
}
2024-02-02 12:46:24 +02:00
require('lualine').setup {
options = {
icons_enabled = false,
theme = 'gruvbox',
component_separators = { left = "\u{2022}", right = "\u{2022}"},
section_separators = { left = nil, right = nil},
}
}
2024-01-05 17:34:44 +02:00
map('n', '<Leader>g', '<cmd>LazyGit<CR>')
2023-09-14 09:26:03 +03:00
map('n', '<Leader>L', '<cmd>Lazy<CR>')
2023-08-22 20:41:13 +03:00
map('n', '<Leader>?', '<cmd>Cheat40<CR>')
map('n', '<Leader>.', '<cmd>Telescope git_files<CR>')
map('n', '<Leader>,', '<cmd>Telescope buffers<CR>')
2023-10-16 19:34:19 +03:00
map('n', '<Leader>T', '<cmd>colorscheme solarized8|set bg=light<CR>')
map('n', '<Leader>t', '<cmd>colorscheme gruvbox8|set bg=dark<CR>')
2022-12-26 01:31:15 +02:00
--[[ theme ]]
2023-10-16 19:34:19 +03:00
vim.g.solarized_extra_hi_groups = 1
vim.g.gruvbox_plugin_hi_groups = 1
vim.g.gruvbox_filetype_hi_groups = 1
vim.o.termguicolors = true
2023-11-04 20:30:07 +02:00
vim.o.bg = 'dark'
2022-12-26 01:31:15 +02:00
2023-11-04 20:30:07 +02:00
vim.cmd [[colorscheme gruvbox8]]