abh - HTMLify profile

abh's Profile Picture

abh

501 Files

102263 Views

Latest files of /abh/nvim/lua/plugins

blink.lua abh/nvim/lua/plugins/blink.lua
218 Views
0 Comments
return {
{
'saghen/blink.cmp',
-- optional: provides snippets for the snippet source
-- dependencies = 'rafamadriz/friendly-snippets',

version = '*',
---@module 'blink.cmp'
treesitter.lua abh/nvim/lua/plugins/treesitter.lua
119 Views
0 Comments
return {
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = { "lua" }, -- Install Lua parser
highlight = { enable = true }, -- Enable syntax highlighting
nerdtree.lua abh/nvim/lua/plugins/nerdtree.lua
142 Views
0 Comments
return {
{
"scrooloose/nerdtree",
keys = {
{ "<F2>", ":NERDTreeToggle<CR>", mode = "n", desc = "Toggle NERDTree" },
}
}
}
leetcode.lua abh/nvim/lua/plugins/leetcode.lua
182 Views
0 Comments
return {
{
"kawre/leetcode.nvim",
build = ":TSUpdate html", -- if you have `nvim-treesitter` installed
dependencies = {
"nvim-telescope/telescope.nvim",
-- "ibhagwan/fzf-lua",
"nvim-lua/plenary.nvim",
lsp_config.lua abh/nvim/lua/plugins/lsp_config.lua
154 Views
0 Comments
return {
{
'neovim/nvim-lspconfig',
dependencies = { 'saghen/blink.cmp' },
opts = {
servers = {

-- Fortran
fzf.lua abh/nvim/lua/plugins/fzf.lua
117 Views
0 Comments
return {
{
"junegunn/fzf.vim",
dependencies = { "junegunn/fzf" },
init = function()
-- Set FZF command prefix
vim.g.fzf_command_prefix = "Fzf"
end,
indent_line.lua abh/nvim/lua/plugins/indent_line.lua
113 Views
0 Comments
return {
{
"Yggdroot/indentLine",
config = function ()
vim.g.indentLine_char = "β”‚"
-- vim.g.indentLine_char_list = {'βΈ½', 'πŸ’ˆ', '┃', '4'}
-- vim.g.indentLine_char_list = {'𝍩', 'πͺ', '𝍫', '}
end,
telescope.lua abh/nvim/lua/plugins/telescope.lua
116 Views
0 Comments
return {
"nvim-telescope/telescope.nvim",
dependencies = {
"nvim-lua/plenary.nvim"
}
}

nui.lua abh/nvim/lua/plugins/nui.lua
135 Views
0 Comments
return {
{
"MunifTanjim/nui.nvim",
commit = "8d3bce9764e627b62b07424e0df77f680d47ffdb"
}
}

aneo.lua abh/nvim/lua/plugins/aneo.lua
90 Views
0 Comments
return {
{
"amanbabuhemant/aneo.nvim",
opts = {
}
}
}