Add alias to use nvim, use better colorscheme
This commit is contained in:
parent
f566f381aa
commit
84805ecc61
3 changed files with 9 additions and 3 deletions
|
@ -7,6 +7,7 @@ set_prompt
|
||||||
configure_ls
|
configure_ls
|
||||||
configure_completions
|
configure_completions
|
||||||
|
|
||||||
|
alias vim="nvim"
|
||||||
alias notes="vim ~/notes.md"
|
alias notes="vim ~/notes.md"
|
||||||
|
|
||||||
# default editor
|
# default editor
|
||||||
|
|
|
@ -22,12 +22,14 @@ set autoindent
|
||||||
set smartindent
|
set smartindent
|
||||||
set smarttab
|
set smarttab
|
||||||
|
|
||||||
set splitright
|
" TODO: do I want this?
|
||||||
set splitbelow
|
"set splitright
|
||||||
|
"set splitbelow
|
||||||
|
|
||||||
let g:vimwiki_list = [ {'path': '~/Code/ntietz/vimwiki'} ]
|
let g:vimwiki_list = [ {'path': '~/Code/ntietz/vimwiki'} ]
|
||||||
|
|
||||||
set spell
|
set spell
|
||||||
|
|
||||||
colorscheme torte
|
colorscheme gruvbox
|
||||||
|
set background=dark
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,9 @@ Plug 'sheerun/vim-polyglot' " Automatic syntax highlighting
|
||||||
" vimwiki
|
" vimwiki
|
||||||
Plug 'vimwiki/vimwiki'
|
Plug 'vimwiki/vimwiki'
|
||||||
|
|
||||||
|
" add a ton of colorschemes to pick from
|
||||||
|
Plug 'flazz/vim-colorschemes'
|
||||||
|
|
||||||
" [submodule "bundle/vim-graphql"]
|
" [submodule "bundle/vim-graphql"]
|
||||||
" path = vim/.vim/bundle/vim-graphql
|
" path = vim/.vim/bundle/vim-graphql
|
||||||
" url = https://github.com/jparise/vim-graphql
|
" url = https://github.com/jparise/vim-graphql
|
||||||
|
|
Loading…
Reference in a new issue