21 lines
413 B
VimL
21 lines
413 B
VimL
filetype plugin indent on
|
|
filetype indent on
|
|
set autoindent
|
|
set expandtab tabstop=2 shiftwidth=2 softtabstop=2 smarttab
|
|
set number
|
|
|
|
source ~/.vim/bundles/vim-plug/plug.vim
|
|
|
|
call plug#begin()
|
|
|
|
Plug 'JuliaEditorSupport/julia-vim'
|
|
Plug 'ziglang/zig.vim'
|
|
Plug 'prabirshrestha/vim-lsp'
|
|
Plug 'mattn/vim-lsp-settings'
|
|
Plug 'williamboman/mason.nvim'
|
|
Plug 'preservim/nerdtree'
|
|
Plug 'rust-lang/rust.vim'
|
|
|
|
|
|
call plug#end()
|