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',
50 'ARM9/snes-syntax-vim',
51 'leafgarland/typescript-vim',
52 'leafOfTree/vim-svelte-plugin',
53 'bumaociyuan/vim-swift',
55 'tikhomirov/vim-glsl',
56 'jparise/vim-graphql',
57 'digitaltoad/vim-pug',
58 'https://git.sr.ht/~torresjrjr/gemini.vim',
60 'dart-lang/dart-vim-plugin',
64 'neovim/nvim-lspconfig',
66 'mfussenegger/nvim-dap',
67 'rcarriga/nvim-dap-ui',
71 'rstacruz/vim-closer',
72 'michaeljsmith/vim-indent-object',
75 {'neoclide/coc.nvim', branch='release'},
76 'vim-scripts/LargeFile',
78 'milkypostman/vim-togglelist'
82 require("dapui").setup()