nvim-config/fnl/plugins.fnl

41 lines
1.0 KiB
Plaintext
Raw Normal View History

2021-07-10 04:05:30 +07:00
(local packer (require :packer))
(packer.init {:git {:clone_timeout 120}})
(packer.startup (fn [use]
(use :wbthomason/packer.nvim)
(use :Olical/aniseed) ; fennel to lua
; themes
(use :projekt0n/github-nvim-theme)
; ui
2021-08-06 11:15:50 +07:00
(use :kyazdani42/nvim-web-devicons)
2021-10-22 20:52:31 +07:00
(use :nvim-lualine/lualine.nvim)
2021-07-14 02:24:46 +07:00
(use :lukas-reineke/indent-blankline.nvim)
2021-07-10 04:05:30 +07:00
(use :ntpeters/vim-better-whitespace)
(use :valloric/matchtagalways)
; util
2021-10-11 11:22:15 +07:00
(use :cocopon/vaffle.vim)
2021-07-10 04:05:30 +07:00
(use :jeetsukumaran/vim-buffergator)
(use :tpope/vim-fugitive)
2021-12-07 22:21:37 +07:00
(use :blackCauldron7/surround.nvim)
2021-07-10 04:05:30 +07:00
(use :b3nj5m1n/kommentary)
(use :nelstrom/vim-visual-star-search)
2021-07-12 01:56:45 +07:00
(use {1 :nvim-treesitter/nvim-treesitter :run ":TSUpdate"})
2021-07-15 03:41:13 +07:00
(use :nvim-treesitter/nvim-treesitter-textobjects)
2021-07-12 01:56:45 +07:00
(use :neovim/nvim-lspconfig)
2021-12-14 22:15:23 +07:00
; completion
(use :hrsh7th/nvim-cmp)
(use :hrsh7th/cmp-nvim-lua)
(use :hrsh7th/cmp-nvim-lsp)
(use :hrsh7th/cmp-buffer)
(use :hrsh7th/cmp-path)
2021-07-10 04:05:30 +07:00
; others
(use :wakatime/vim-wakatime)
(use {1 :kkoomen/vim-doge :run ":call doge#install()"})))