Created
April 20, 2023 14:01
-
-
Save Nachtalb/036a48b995eb1dabec1e5f6cfad2a8e7 to your computer and use it in GitHub Desktop.
Minimal init.vim for testing
This file contains 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 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