1 local lazypath = vim.fn.stdpath('data') .. '/lazy/lazy.nvim'
2 if not vim.loop.fs_stat(lazypath) then
7 'https://github.com/folke/lazy.nvim.git',
8 '--branch=stable', -- latest stable release
12 vim.opt.rtp:prepend(lazypath)
14 require('lazy').setup({
18 -- calling `setup` is optional for customization
19 require("fzf-lua").setup({
26 ['--layout']='default'
29 ['fg'] = {'fg', 'Normal'},
30 ['bg'] = {'bg', 'Normal'},
31 ['hl'] = {'fg', 'Comment'},
32 ['fg+'] = {'fg', 'CursorLine'},
33 ['bg+'] = {'bg', 'CursorLine'},
34 ['hl+'] = {'fg', 'Statement'},
35 ['info'] = {'fg', 'PreProc'},
36 ['prompt'] = {'fg', 'Conditional'},
37 ['pointer'] = {'fg', 'Exception'},
38 ['marker'] = {'fg', 'Keyword'},
39 ['spinner'] = {'fg', 'Label'},
40 ['header'] = {'fg', 'Comment'}
47 'https://git.sr.ht/~rbdr/api-notation.vim',
48 'ARM9/snes-syntax-vim',
49 'https://git.sr.ht/~torresjrjr/gemini.vim',
52 'mfussenegger/nvim-dap',
53 'rcarriga/nvim-dap-ui',
57 'rstacruz/vim-closer',
58 'michaeljsmith/vim-indent-object',
61 'nvim-treesitter/nvim-treesitter',
64 'neovim/nvim-lspconfig',
68 'vim-scripts/LargeFile',
70 'milkypostman/vim-togglelist'