Skip to content

Instantly share code, notes, and snippets.

@mmmattos
Created September 29, 2023 19:50
Show Gist options
  • Save mmmattos/2fe69633ef7ddc8f49fc4181a46e1ab2 to your computer and use it in GitHub Desktop.
Save mmmattos/2fe69633ef7ddc8f49fc4181a46e1ab2 to your computer and use it in GitHub Desktop.
NEOVIM (nvim) file to go in ~/.config/nvim/init.vim
set clipboard=unnamed
set paste
set mouse=a
set guifont=Monaco:h15:b
set ignorecase
set number
call plug#begin('~/.local/share/nvim/site/plugged')
Plug 'junegunn/goyo.vim'
Plug 'vim-airline/vim-airline'
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
Plug 'nvim-treesitter/nvim-treesitter-textobjects'
Plug 'neovim/nvim-lspconfig'
Plug 'ray-x/go.nvim'
Plug 'ray-x/guihua.lua'
call plug#end()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment