101 lines
2.1 KiB
Lua
Executable file
101 lines
2.1 KiB
Lua
Executable file
|
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|
|
|
if not vim.loop.fs_stat(lazypath) then
|
|
vim.fn.system({
|
|
"git",
|
|
"clone",
|
|
"--filter=blob:none",
|
|
"https://github.com/folke/lazy.nvim.git",
|
|
"--branch=stable", -- latest stable release
|
|
lazypath,
|
|
})
|
|
end
|
|
|
|
vim.opt.rtp:prepend(lazypath)
|
|
|
|
|
|
require("lazy").setup({
|
|
|
|
'EdenEast/nightfox.nvim',
|
|
'luckasRanarison/tree-sitter-hypr',
|
|
|
|
'lambdalisue/nerdfont.vim',
|
|
'gelguy/wilder.nvim',
|
|
|
|
'bkad/camelcasemotion',
|
|
'lewis6991/gitsigns.nvim',
|
|
|
|
{
|
|
'stevearc/oil.nvim',
|
|
dependencies = {
|
|
"nvim-tree/nvim-web-devicons"
|
|
},
|
|
},
|
|
|
|
{
|
|
'kylechui/nvim-surround',
|
|
version = '*', -- Use for stability; omit to use `main` branch for the latest features
|
|
config = function()
|
|
require('nvim-surround').setup()
|
|
end
|
|
},
|
|
|
|
{
|
|
'shellRaining/hlchunk.nvim',
|
|
event = {
|
|
'UIEnter'
|
|
},
|
|
},
|
|
|
|
{
|
|
'ThePrimeagen/harpoon',
|
|
branch = 'harpoon2',
|
|
dependencies = {
|
|
'nvim-lua/plenary.nvim'
|
|
}
|
|
},
|
|
|
|
{
|
|
'nvim-lualine/lualine.nvim',
|
|
dependencies =
|
|
{
|
|
'nvim-tree/nvim-web-devicons',
|
|
opt = true
|
|
}
|
|
},
|
|
|
|
{
|
|
'nvim-treesitter/nvim-treesitter',
|
|
build = ':TSUpdate'
|
|
},
|
|
|
|
{
|
|
'VonHeikemen/lsp-zero.nvim',
|
|
branch = 'v3.x',
|
|
dependencies = {
|
|
-- LSP Support
|
|
{'neovim/nvim-lspconfig'}, -- Required
|
|
{'williamboman/mason.nvim'}, -- Optional
|
|
{'williamboman/mason-lspconfig.nvim'}, -- Optional
|
|
|
|
-- Autocompletion
|
|
{'hrsh7th/nvim-cmp'}, -- Required
|
|
{'hrsh7th/cmp-nvim-lsp'}, -- Required
|
|
{'L3MON4D3/LuaSnip'}, -- Required
|
|
}
|
|
},
|
|
|
|
{
|
|
'echasnovski/mini.nvim',
|
|
version = false
|
|
},
|
|
})
|
|
|
|
|
|
|
|
vim.opt.laststatus=2
|
|
|
|
vim.keymap.set('i', '<Tab>', [[pumvisible() ? "\<C-n>" : "\<Tab>"]], { expr = true })
|
|
vim.keymap.set('i', '<S-Tab>', [[pumvisible() ? "\<C-p>" : "\<S-Tab>"]], { expr = true })
|