discord-presence

This commit is contained in:
Tyrel Souza 2021-12-10 15:36:49 -05:00
parent 3850bbaf52
commit 202f16cb91
1 changed files with 17 additions and 0 deletions

View File

@ -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 <C-o> :NERDTreeToggle<CR>
@ -85,3 +86,19 @@ let g:python3_host_prog = '~/.nvim.pythonenv/bin/python'
let g:floaterm_keymap_toggle = '<F9>'
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"