some interface tweaks
This commit is contained in:
parent
249755c7ec
commit
2250d7fbc3
1 changed files with 10 additions and 1 deletions
|
@ -9,10 +9,17 @@ if has('nvim')
|
||||||
Plug 'cespare/vim-toml'
|
Plug 'cespare/vim-toml'
|
||||||
Plug 'JuliaEditorSupport/julia-vim'
|
Plug 'JuliaEditorSupport/julia-vim'
|
||||||
Plug 'lervag/vimtex'
|
Plug 'lervag/vimtex'
|
||||||
|
Plug 'airblade/vim-gitgutter'
|
||||||
Plug 'vim-pandoc/vim-pandoc'
|
Plug 'vim-pandoc/vim-pandoc'
|
||||||
Plug 'vim-pandoc/vim-pandoc-syntax'
|
Plug 'vim-pandoc/vim-pandoc-syntax'
|
||||||
Plug 'vim-pandoc/vim-rmarkdown'
|
Plug 'vim-pandoc/vim-rmarkdown'
|
||||||
|
|
||||||
|
" LSP
|
||||||
|
Plug 'neovim/nvim-lspconfig'
|
||||||
|
|
||||||
|
" Colors
|
||||||
|
Plug 'jeffkreeftmeijer/vim-dim'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" Incrementally show effects of :s, :smagic, :snomagic
|
" Incrementally show effects of :s, :smagic, :snomagic
|
||||||
|
@ -27,12 +34,14 @@ else
|
||||||
syntax enable
|
syntax enable
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
colorscheme dim
|
||||||
|
|
||||||
|
set number
|
||||||
|
|
||||||
" space is our leader!
|
" space is our leader!
|
||||||
let mapleader = "\<Space>"
|
let mapleader = "\<Space>"
|
||||||
let maplocalleader = "\\"
|
let maplocalleader = "\\"
|
||||||
|
|
||||||
set number relativenumber
|
|
||||||
set nobackup
|
set nobackup
|
||||||
set noswapfile
|
set noswapfile
|
||||||
set guicursor=
|
set guicursor=
|
||||||
|
|
Loading…
Add table
Reference in a new issue