This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call plug#begin() | |
Plug 'neovim/nvim-lspconfig' | |
call plug#end() | |
lua require("lsp_config") | |
autocmd BufWritePre *.go lua vim.lsp.buf.formatting() | |
autocmd BufWritePre *.go lua goimports(1000) |