diff --git a/config/nvim/init.vim b/config/nvim/init.vim index cd1740c..2741ca3 100644 --- a/config/nvim/init.vim +++ b/config/nvim/init.vim @@ -20,6 +20,7 @@ call plug#begin('~/.vim/plugged') Plug 'thoughtbot/vim-rspec' Plug 'voldikss/vim-floaterm' Plug 'fatih/vim-go' + Plug 'andweeb/presence.nvim' call plug#end() map :NERDTreeToggle @@ -85,3 +86,19 @@ let g:python3_host_prog = '~/.nvim.pythonenv/bin/python' let g:floaterm_keymap_toggle = '' let g:floaterm_width = 0.85 let g:floaterm_height = 0.85 + + + +"DISCORD PLUGIN +" General options +let g:presence_auto_update = 1 +let g:presence_neovim_image_text = "The One True Text Editor" +let g:presence_main_image = "nvim" +" Rich Presence text options +let g:presence_editing_text = "Editing %s" +let g:presence_file_explorer_text = "Browsing %s" +let g:presence_git_commit_text = "Committing changes" +let g:presence_plugin_manager_text = "Managing plugins" +let g:presence_reading_text = "Reading %s" +let g:presence_workspace_text = "Working on %s" +let g:presence_line_number_text = "Line %s out of %s"