Skip to content

Instantly share code, notes, and snippets.

@Nachtalb
Created April 20, 2023 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nachtalb/036a48b995eb1dabec1e5f6cfad2a8e7 to your computer and use it in GitHub Desktop.
Save Nachtalb/036a48b995eb1dabec1e5f6cfad2a8e7 to your computer and use it in GitHub Desktop.
Minimal init.vim for testing
set nocompatible
set showmatch
set ignorecase
set mouse=v
set hlsearch
set incsearch
set tabstop=4
set softtabstop=4
set expandtab
set shiftwidth=4
set autoindent
set number
set wildmode=longest,list
set cc=80
filetype plugin indent on
syntax on
set mouse=a
set clipboard=unnamedplus
filetype plugin on
set cursorline
set ttyfast
call plug#begin()
Plug 'dracula/vim'
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
Plug 'nvim-treesitter/playground'
Plug 'danymat/neogen'
Plug 'L3MON4D3/LuaSnip', {'tag': 'v1.*', 'do': 'make install_jsregexp'}
call plug#end()
colorscheme dracula
filetype plugin indent on
lua << END
require'nvim-treesitter.configs'.setup {
ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "python" },
sync_install = false,
auto_install = true,
}
require('neogen').setup({ snippet_engine = "luasnip" })
END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment