mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-07-20 10:45:14 +02:00
TODOs
This commit is contained in:
parent
c6cf40cc57
commit
dd8fa942f4
3 changed files with 34 additions and 20 deletions
12
README.md
12
README.md
|
@ -7,6 +7,7 @@ We will be integrating with VSCode using [this](https://github.com/asvetliakov/v
|
|||
## Install Neovim
|
||||
|
||||
- On Mac
|
||||
|
||||
```
|
||||
brew install neovim
|
||||
```
|
||||
|
@ -16,6 +17,7 @@ We will be integrating with VSCode using [this](https://github.com/asvetliakov/v
|
|||
```
|
||||
sudo apt install neovim
|
||||
```
|
||||
|
||||
- Arch
|
||||
|
||||
```
|
||||
|
@ -80,11 +82,17 @@ let g:node_host_prog = expand("~/.nvm/versions/node/v12.16.1/bin/neovim-node-hos
|
|||
Explanations and installation instruction can be found on my blog
|
||||
|
||||
# TODO
|
||||
- Map which key stuff
|
||||
|
||||
- People asked about vimwiki I kinda hate it but maybe I'll add it
|
||||
- float term lazy git
|
||||
- spectre, or async task/run
|
||||
- setup custom paths
|
||||
- install script envsubst is your friend
|
||||
- add better whitespace pluginand a toggle, video about clean code maybe
|
||||
- Remember silent for which key
|
||||
- pear tree (jsx autocomplete would be nice)
|
||||
- echodoc and buitin support with CoC
|
||||
- snippets (coc snippets)
|
||||
- git messenger
|
||||
- float term
|
||||
- neovide
|
||||
- setup global coc extensions to auto install
|
||||
|
|
5
init.vim
5
init.vim
|
@ -43,3 +43,8 @@ let g:floaterm_keymap_new = '<F7>'
|
|||
let g:floaterm_keymap_prev = '<F8>'
|
||||
let g:floaterm_keymap_next = '<F9>'
|
||||
let g:floaterm_keymap_toggle = '<F12>'
|
||||
|
||||
let g:pear_tree_smart_openers = 1
|
||||
let g:pear_tree_smart_closers = 1
|
||||
let g:pear_tree_smart_backspace = 1
|
||||
|
||||
|
|
|
@ -40,7 +40,8 @@ call plug#begin('~/.config/nvim/autoload/plugged')
|
|||
" Cool Icons
|
||||
Plug 'ryanoasis/vim-devicons'
|
||||
" Auto pairs for '(' '[' '{'
|
||||
Plug 'jiangmiao/auto-pairs'
|
||||
" Plug 'jiangmiao/auto-pairs'
|
||||
Plug 'tmsvg/pear-tree'
|
||||
" Themes
|
||||
Plug 'christianchiarulli/onedark.vim'
|
||||
" Plug 'kaicataldo/material.vim'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue