nix-community.nixvim/plugins/default.nix
Shayan Rashid 6d4c15385d
plugins/presence-nvim: init plugin (#285)
* presence-nvim: init plugin

Discord Rich Presence for Neovim

* Apply suggestions from code review

Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>

* presence-nvim: fixes syntax error

* presence-nvim: updates some options to accept raw types

the options which were able to accept lua functions are now able to be assigned raw values

---------

Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
2023-03-24 13:20:10 +01:00

93 lines
2.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/coq-thirdparty.nix
./completion/copilot.nix
./completion/nvim-cmp
./completion/nvim-cmp/sources
./completion/lspkind.nix
./git/fugitive.nix
./git/gitgutter.nix
./git/gitmessenger.nix
./git/gitsigns.nix
./git/neogit.nix
./languages/clangd-extensions.nix
./languages/ledger.nix
./languages/markdown-preview.nix
./languages/nix.nix
./languages/plantuml-syntax.nix
./languages/rust.nix
./languages/sniprun.nix
./languages/tagbar.nix
./languages/treesitter.nix
./languages/treesitter-context.nix
./languages/treesitter-refactor.nix
./languages/vimtex.nix
./languages/zig.nix
./null-ls
./nvim-lsp
./nvim-lsp/inc-rename.nix
./nvim-lsp/lspsaga.nix
./nvim-lsp/lsp-lines.nix
./nvim-lsp/nvim-lightbulb.nix
./nvim-lsp/trouble.nix
./pluginmanagers/packer.nix
./snippets/luasnip
./statuslines/airline.nix
./statuslines/lightline.nix
./statuslines/lualine.nix
./telescope
./ui/noice.nix
./utils/comment-nvim.nix
./utils/commentary.nix
./utils/easyescape.nix
./utils/endwise.nix
./utils/floaterm.nix
./utils/goyo.nix
./utils/harpoon.nix
./utils/indent-blankline.nix
./utils/intellitab.nix
./utils/mark-radar.nix
./utils/neo-tree.nix
./utils/neorg.nix
./utils/notify.nix
./utils/netman.nix
./utils/nvim-autopairs.nix
./utils/nvim-bqf.nix
./utils/nvim-colorizer.nix
./utils/nvim-tree.nix
./utils/nvim-osc52.nix
./utils/project-nvim.nix
./utils/presence-nvim.nix
./utils/specs.nix
./utils/startify.nix
./utils/surround.nix
./utils/todo-comments.nix
./utils/undotree.nix
./utils/vim-bbye.nix
./utils/vim-matchup.nix
./utils/dashboard.nix
./utils/emmet.nix
./utils/magma-nvim.nix
];
}