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

52 lines
1.5 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 {
{'ellisonleao/gruvbox.nvim', priority = 1000, config = true},
{'w0rp/ale', cmd = 'ALEEnable', ft = {'bash', 'go', 'lua', 'python', 'sh', 'zsh'}},
2024-08-08 18:26:59 +03:00
'kdheepak/lazygit.nvim',
'nvim-telescope/telescope.nvim',
2024-08-08 18:28:29 +03:00
'nvim-treesitter/nvim-treesitter',
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',
2024-08-08 18:26:59 +03:00
{'nvim-lua/plenary.nvim', lazy = true},
2023-09-13 22:57:25 +03:00
}
2022-12-26 01:31:15 +02:00
--[[ plugin configs and maps ]]
require('gitsigns').setup()
require('gruvbox').setup {
terminal_colors = true
}
require('nvim-treesitter.configs').setup {
highlight = {
enable = true
}
}
2024-02-02 12:46:24 +02:00
require('lualine').setup {
options = {
icons_enabled = false,
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>')
2022-12-26 01:31:15 +02:00
--[[ theme ]]
2023-10-16 19:34:19 +03:00
vim.o.termguicolors = true
2024-03-28 16:45:27 +02:00
vim.o.bg = 'dark'
2022-12-26 01:31:15 +02:00
vim.cmd [[colorscheme gruvbox]]