Advertisement
Guest User

Untitled

a guest
Apr 14th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. neovim = super.neovim.override {
  2. vimAlias = true;
  3. withPython = true;
  4. configure = {
  5. packages.myVimPackage = with super.vimPlugins; {
  6. start = [
  7. "rust-lang/rust.vim"
  8. "romainl/Apprentice"
  9. "NLKNguyen/papercolor-theme"
  10. "junegunn/seoul256.vim"
  11. vim-signify
  12. vim-fugitive
  13. ultisnips
  14. "lifepillar/vim-mucomplete"
  15. ];
  16. };
  17.  
  18. customRC = ''
  19. colorscheme PaperColor
  20. '';
  21. };
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement