aerc-compose-neovim.sh 454 B

1234567891011121314
  1. #!/usr/bin/env zsh
  2. exec nvim -u NONE \
  3. -c 'packadd leap.nvim' \
  4. -c "lua require('leap').add_default_mappings()" \
  5. -c 'highlight link LeapBackdrop Comment' \
  6. -c 'set spell termguicolors' \
  7. -c 'setlocal formatoptions+=wa textwidth=80 comments+=nb:>' \
  8. -c "lua require('nvim-treesitter.configs').setup({highlight={enable=true}})" \
  9. -c 'packadd nightfox.nvim' \
  10. -c 'colorscheme carbonfox' \
  11. -c 'startinsert' \
  12. "${@}"