2023-05-26 06:51:58 -07:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
|
|
|
|
exec nvim -u NONE \
|
|
|
|
-c 'packadd leap.nvim' \
|
|
|
|
-c "lua require('leap').add_default_mappings()" \
|
|
|
|
-c 'highlight link LeapBackdrop Comment' \
|
|
|
|
-c "lua require('nvim-treesitter.configs').setup({highlight={enable=true}})" \
|
2023-06-04 23:32:28 -07:00
|
|
|
-c 'set spell termguicolors'
|
2023-05-26 06:51:58 -07:00
|
|
|
-c 'packadd nightfox.nvim' \
|
|
|
|
-c 'colorscheme carbonfox' \
|
|
|
|
-c 'startinsert' \
|
|
|
|
"${@}"
|