[nvim] Added function to organize imports.

This commit is contained in:
Keanu Timmermans 2021-07-03 12:48:13 +02:00
commit 9136e67a84
Signed by: keanucode
GPG Key ID: A7431C0D513CA93B
2 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,7 @@ source <sfile>:p:h/../dmitmel-dotfiles/nvim/init.vim
" Give me that beautiful colorscheme
set termguicolors
let airline_powerline_fonts = 1
" Copy to clipboard register and paste from clipboard register {{{
" Taken from https://unix.stackexchange.com/a/23437

1
nvim/plugin/commands.vim Normal file
View File

@ -0,0 +1 @@
command! -nargs=0 OR :call CocAction('runCommand', 'editor.action.organizeImport')