nvim-config/fnl/plugins.fnl

38 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
(use {1 :hoob3rt/lualine.nvim
:requires {1 :kyazdani42/nvim-web-devicons :opt true}})
(use :junegunn/goyo.vim)
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
(use :cocopon/vaffle.vim)
(use :jeetsukumaran/vim-buffergator)
(use :tpope/vim-fugitive)
(use :kana/vim-operator-user)
(use :rhysd/vim-operator-surround)
(use :chaoren/vim-wordmotion)
(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 :hrsh7th/nvim-compe)
(use :neovim/nvim-lspconfig)
2021-07-10 04:05:30 +07:00
; others
(use :wakatime/vim-wakatime)
(use {1 :kkoomen/vim-doge :run ":call doge#install()"})))