diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 18:52:34 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 18:52:34 +0200 |
commit | b74c9dd22e632bbe720587db92966c4d6811b766 (patch) | |
tree | f68e5bb862fd5a800f86852e535d29984f461cb3 /fnl/plugins.fnl | |
parent | 274648011686b1c822e63b03bdcc6f2ce8e9b41e (diff) |
style: format with fnlfmt
Diffstat (limited to 'fnl/plugins.fnl')
-rw-r--r-- | fnl/plugins.fnl | 122 |
1 files changed, 61 insertions, 61 deletions
diff --git a/fnl/plugins.fnl b/fnl/plugins.fnl index 3994ba7..23bf9cb 100644 --- a/fnl/plugins.fnl +++ b/fnl/plugins.fnl @@ -1,64 +1,64 @@ ;; List of plugins (module plugins) -(def plugins - {:wbthomason/packer.nvim {} ;; Have packer manage itself - :lewis6991/impatient.nvim {} - :Olical/aniseed {} - - :nvim-lua/popup.nvim {} ;; An implementation of the Popup API from vim in Neovim - :nvim-lua/plenary.nvim {} ;; Useful lua functions used ny lots of plugins - - ;; Colorschemes - :aktersnurra/no-clown-fiesta.nvim {} - - ;; LSP - :hrsh7th/nvim-cmp {} ;; The completion plugin - :hrsh7th/cmp-buffer {} ;; buffer completions - :hrsh7th/cmp-path {} ;; path completions - :hrsh7th/cmp-cmdline {} ;; cmdline completions - :saadparwaiz1/cmp_luasnip {} ;; snippet completions - :onsails/lspkind-nvim {} - :hrsh7th/cmp-nvim-lsp {} - :neovim/nvim-lspconfig {} - :williamboman/nvim-lsp-installer {} - :tamago324/nlsp-settings.nvim {} - :jose-elias-alvarez/null-ls.nvim {} - :b0o/SchemaStore.nvim {} - - ;; Snippets - :L3MON4D3/LuaSnip {} - :rafamadriz/friendly-snippets {} - - ;; Telescope - :nvim-telescope/telescope.nvim { :requires "nvim-lua/plenary.nvim" } - :nvim-telescope/telescope-fzf-native.nvim { :run "make" } - :nvim-telescope/telescope-file-browser.nvim {} - - ;; Treesitter - :nvim-treesitter/nvim-treesitter { :run ":TSUpdate" } - :JoosepAlviste/nvim-ts-context-commentstring {} - :nvim-treesitter/playground {} - - ;; Miscellaneous plugins - :windwp/nvim-autopairs {} - :numToStr/Comment.nvim {} - :lewis6991/gitsigns.nvim {} - :kyazdani42/nvim-web-devicons {} - :kyazdani42/nvim-tree.lua {} - :akinsho/bufferline.nvim {} - :moll/vim-bbye {} - - :nvim-lualine/lualine.nvim { :requires { 1 "kyazdani42/nvim-web-devicons" :opt true }} - :ahmedkhalf/project.nvim {} - :goolord/alpha-nvim {} - :antoinemadec/FixCursorHold.nvim {} ;; This is needed to fix lsp doc highlight - :folke/which-key.nvim {} - :folke/zen-mode.nvim {} - :windwp/nvim-spectre {} - :phaazon/hop.nvim {} - - :kevinhwang91/nvim-bqf { :event "BufRead" } - :norcalli/nvim-colorizer.lua {} - :max397574/better-escape.nvim {} - :nvim-orgmode/orgmode {}}) +(def plugins {:wbthomason/packer.nvim {} + ;; Have packer manage itself + :lewis6991/impatient.nvim {} + :Olical/aniseed {} + :nvim-lua/popup.nvim {} + ;; An implementation of the Popup API from vim in Neovim + :nvim-lua/plenary.nvim {} + ;; Useful lua functions used ny lots of plugins + ;; Colorschemes + :aktersnurra/no-clown-fiesta.nvim {} + ;; LSP + :hrsh7th/nvim-cmp {} + ;; The completion plugin + :hrsh7th/cmp-buffer {} + ;; buffer completions + :hrsh7th/cmp-path {} + ;; path completions + :hrsh7th/cmp-cmdline {} + ;; cmdline completions + :saadparwaiz1/cmp_luasnip {} + ;; snippet completions + :onsails/lspkind-nvim {} + :hrsh7th/cmp-nvim-lsp {} + :neovim/nvim-lspconfig {} + :williamboman/nvim-lsp-installer {} + :tamago324/nlsp-settings.nvim {} + :jose-elias-alvarez/null-ls.nvim {} + :b0o/SchemaStore.nvim {} + ;; Snippets + :L3MON4D3/LuaSnip {} + :rafamadriz/friendly-snippets {} + ;; Telescope + :nvim-telescope/telescope.nvim {:requires :nvim-lua/plenary.nvim} + :nvim-telescope/telescope-fzf-native.nvim {:run :make} + :nvim-telescope/telescope-file-browser.nvim {} + ;; Treesitter + :nvim-treesitter/nvim-treesitter {:run ":TSUpdate"} + :JoosepAlviste/nvim-ts-context-commentstring {} + :nvim-treesitter/playground {} + ;; Miscellaneous plugins + :windwp/nvim-autopairs {} + :numToStr/Comment.nvim {} + :lewis6991/gitsigns.nvim {} + :kyazdani42/nvim-web-devicons {} + :kyazdani42/nvim-tree.lua {} + :akinsho/bufferline.nvim {} + :moll/vim-bbye {} + :nvim-lualine/lualine.nvim {:requires {1 :kyazdani42/nvim-web-devicons + :opt true}} + :ahmedkhalf/project.nvim {} + :goolord/alpha-nvim {} + :antoinemadec/FixCursorHold.nvim {} + ;; This is needed to fix lsp doc highlight + :folke/which-key.nvim {} + :folke/zen-mode.nvim {} + :windwp/nvim-spectre {} + :phaazon/hop.nvim {} + :kevinhwang91/nvim-bqf {:event :BufRead} + :norcalli/nvim-colorizer.lua {} + :max397574/better-escape.nvim {} + :nvim-orgmode/orgmode {}}) |