1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/plugins/default.nix
Alexander Nortung f12a79bda6
Adding nvim-cmp plugin (#25)
* started adding nvim-cmp

* nvim-cmp: added snippet option

* nvim-cmp: added mapping option

* nvim-cmp: added completion option

* nvim-cmp: added confirmation config option

* nvim-cmp: added formatting options

* nvim-cmp: added matching option

* nvim-cmp: added sorting option

* nvim-cmp: added sources option

* nvim-cmp: added a bunch of sources

* nvim-cmp: auto enabling cmp source plugins should mostly work now

* nvim-cmp: added view option

* nvim_cmp: added window option

* nvim-cmp: added experimental option

* nvim-cmp: mappingPresets now works
2022-07-28 20:38:38 +01:00

55 lines
1.1 KiB
Nix

{
imports = [
./bufferlines/barbar.nix
./bufferlines/bufferline.nix
./colorschemes/base16.nix
./colorschemes/gruvbox.nix
./colorschemes/nord.nix
./colorschemes/one.nix
./colorschemes/onedark.nix
./colorschemes/tokyonight.nix
./completion/coq.nix
./completion/nvim-cmp
./completion/nvim-cmp/sources
./git/fugitive.nix
./git/gitgutter.nix
./git/neogit.nix
./languages/ledger.nix
./languages/nix.nix
./languages/treesitter.nix
./languages/zig.nix
./nvim-lsp
./nvim-lsp/lspsaga.nix
./pluginmanagers/packer.nix
./statuslines/airline.nix
./statuslines/lightline.nix
./statuslines/lualine.nix
./telescope
./utils/comment-nvim.nix
./utils/commentary.nix
./utils/easyescape.nix
./utils/endwise.nix
./utils/floaterm.nix
./utils/goyo.nix
./utils/intellitab.nix
./utils/mark-radar.nix
./utils/notify.nix
./utils/nvim-autopairs.nix
./utils/nvim-tree.nix
./utils/specs.nix
./utils/startify.nix
./utils/surround.nix
./utils/undotree.nix
./utils/dashboard.nix
./utils/emmet.nix
];
}