nvim: not using plugins anymore; separated vim and nvim config
This commit is contained in:
parent
efa2f54c74
commit
a502df7f11
@ -12,6 +12,8 @@ mc = "~/.config/mc"
|
||||
[vim.files]
|
||||
# type symbolic prevents interpreting '{{' as template
|
||||
"vim/.vimrc" = { target = "~/.vimrc", type = "symbolic" }
|
||||
|
||||
[nvim.files]
|
||||
"vim/init.vim" = { target = "~/.config/nvim/init.vim", type = "symbolic" }
|
||||
|
||||
[i3.files]
|
||||
|
@ -1,2 +1,2 @@
|
||||
# includes = []
|
||||
packages = ["mc", "vim", "emacs", "i3", "alacritty"]
|
||||
packages = ["mc", "nvim", "emacs", "i3", "alacritty"]
|
||||
|
10
vim/init.vim
10
vim/init.vim
@ -31,13 +31,13 @@ endif
|
||||
let mapleader = " "
|
||||
|
||||
" Plugins
|
||||
call plug#begin('~/.vim/plugged')
|
||||
" call plug#begin('~/.vim/plugged')
|
||||
|
||||
Plug 'itchyny/lightline.vim'
|
||||
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
|
||||
" Plug 'itchyny/lightline.vim'
|
||||
" Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
|
||||
" Plug 'Valloric/YouCompleteMe'
|
||||
" Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }, 'for': ['markdown', 'vim-plug']}
|
||||
Plug 'https://github.com/ap/vim-css-color.git'
|
||||
" Plug 'https://github.com/ap/vim-css-color.git'
|
||||
|
||||
" Collection of common configurations for the Nvim LSP client
|
||||
" Plug 'neovim/nvim-lspconfig'
|
||||
@ -57,7 +57,7 @@ Plug 'https://github.com/ap/vim-css-color.git'
|
||||
|
||||
" Plug 'tpope/vim-commentary'
|
||||
|
||||
call plug#end()
|
||||
" call plug#end()
|
||||
|
||||
"------------------------------------------------------------
|
||||
" Must have options {{{1
|
||||
|
Loading…
x
Reference in New Issue
Block a user