mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 19:32:24 +00:00
120 lines
3.8 KiB
Fennel
120 lines
3.8 KiB
Fennel
(module plugins
|
|
{require {}
|
|
require-macros [macros]})
|
|
|
|
(packer-use
|
|
:gruvbox-community/gruvbox {:opt false
|
|
:config #(vim.cmd "colorscheme gruvbox")}
|
|
|
|
:nvim-telescope/telescope.nvim {:mod "plugins.telescope"
|
|
:cmd ["Telescope"]
|
|
:requires [:nvim-lua/popup.nvim :nvim-lua/plenary.nvim]}
|
|
|
|
:kyazdani42/nvim-web-devicons {}
|
|
|
|
:p00f/nvim-ts-rainbow {}
|
|
:romgrk/nvim-treesitter-context {}
|
|
:JoosepAlviste/nvim-ts-context-commentstring {}
|
|
:nvim-treesitter/nvim-treesitter {:mod "plugins.treesitter"
|
|
:run ":TSUpdate"}
|
|
|
|
; :code-biscuits/nvim-biscuits {} ; show opening line after closing curly
|
|
|
|
:folke/which-key.nvim {}
|
|
|
|
:pwntester/octo.nvim {}
|
|
|
|
; json query stuff
|
|
:gennaro-tedesco/nvim-jqx {:ft ["json"]}
|
|
|
|
:Olical/aniseed {}; :tag "v3.16.0"}
|
|
|
|
; general purpose lua wrappers for nvim stuff
|
|
:norcalli/nvim.lua {}
|
|
|
|
:glepnir/galaxyline.nvim {:mod "plugins.galaxyline"
|
|
:after "gruvbox"}
|
|
:akinsho/nvim-bufferline.lua {:mod "plugins.bufferline"}
|
|
|
|
:sindrets/diffview.nvim {:mod "plugins.diffview"}
|
|
:tweekmonster/startuptime.vim {:cmd ["StartupTime"]}
|
|
:tpope/vim-repeat {}
|
|
|
|
:junegunn/goyo.vim {:cmd "Goyo"}
|
|
|
|
:lewis6991/gitsigns.nvim {:mod "plugins.gitsigns"}
|
|
|
|
|
|
:tpope/vim-fugitive {}
|
|
:preservim/nerdcommenter {}
|
|
:godlygeek/tabular {:cmd ["Tabularize"]} ; :Tab /regex can align code on occurrences of the given regex. I.e. :Tab /= aligns all = signs in a block.
|
|
:tpope/vim-surround {}
|
|
:nathanaelkane/vim-indent-guides {} ; Can be toggled using <leader>ig (intent-guides)
|
|
|
|
; <C-n> to select current word. <C-n> to select next occurrence.
|
|
; with multiple lines selected in Visual mode, <C-n> to insert cursor in each line. I not i to insert in Visual-mode.
|
|
:terryma/vim-multiple-cursors {}
|
|
:mg979/vim-visual-multi {}
|
|
:hauleth/sad.vim {} ; Use siw instead of ciw. when using . afterwards, will find the next occurrence of the changed word and change it too
|
|
:wellle/targets.vim {} ; more text objects. IE: cin (change in next parens). generally better handling of surrounding objects.
|
|
|
|
:iamcco/markdown-preview.nvim {:run vim.fn.mkdp#util#install}
|
|
|
|
; code-related ----------------------------------------- <<<
|
|
|
|
:folke/lsp-trouble.nvim {:mod "plugins.trouble"}
|
|
:simrat39/symbols-outline.nvim {:mod "plugins.symbols-outline"}
|
|
:neovim/nvim-lspconfig {}
|
|
:hrsh7th/nvim-compe {:mod "plugins.compe"}
|
|
:glepnir/lspsaga.nvim {:mod "plugins.lspsaga"}
|
|
|
|
|
|
:Olical/conjure {}
|
|
:tami5/compe-conjure {:requires [:Olical/conjure]}
|
|
|
|
:machakann/vim-highlightedyank {}
|
|
:ciaranm/detectindent {:mod "plugins.detect-indent"}
|
|
:pechorin/any-jump.vim {}
|
|
:justinmk/vim-sneak {:mod "plugins.sneak"}
|
|
:psliwka/vim-smoothie {}
|
|
:editorconfig/editorconfig-vim {}
|
|
:honza/vim-snippets {}
|
|
:tommcdo/vim-exchange {}
|
|
;:frazrepo/vim-rainbow {}
|
|
|
|
:bhurlow/vim-parinfer {:ft ["fennel" "carp" "lisp" "elisp"]}
|
|
|
|
:bduggan/vim-raku {:ft ["raku"]}
|
|
:LnL7/vim-nix {:ft ["nix"]}
|
|
|
|
:kevinoid/vim-jsonc {}
|
|
|
|
:norcalli/nvim-colorizer.lua {:mod "plugins.nvim-colorizer"}
|
|
:pangloss/vim-javascript {} ; syntax highlighting JS
|
|
:ianks/vim-tsx {}
|
|
:leafgarland/typescript-vim {}
|
|
:sheerun/vim-polyglot {} ; Syntax highlighting for most languages
|
|
:HerringtonDarkholme/yats.vim {} ; typescript syntax highlighting
|
|
:mxw/vim-jsx {}
|
|
:mattn/emmet-vim {:mod "plugins.emmet"}
|
|
|
|
:purescript-contrib/purescript-vim {}
|
|
|
|
|
|
:derekelkins/agda-vim {:ft ["agda"]}
|
|
:neovimhaskell/haskell-vim { :ft ["haskell"]}
|
|
|
|
:rust-lang/rust.vim {:ft ["rust"]
|
|
:requires ["mattn/webapi-vim"]}
|
|
:simrat39/rust-tools.nvim {:ft ["rust"]}
|
|
:ray-x/lsp_signature.nvim {}
|
|
|
|
:vmchale/ats-vim {:ft ["ats"]}
|
|
|
|
:bakpakin/fennel.vim {})
|
|
; >>>
|
|
|
|
|
|
; vim:foldmarker=<<<,>>>
|
|
|
|
|