Created
September 29, 2023 19:50
-
-
Save mmmattos/2fe69633ef7ddc8f49fc4181a46e1ab2 to your computer and use it in GitHub Desktop.
NEOVIM (nvim) file to go in ~/.config/nvim/init.vim
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
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