WindowEnv : Neovide

This commit is contained in:
2021-10-24 14:06:09 +09:00
parent 6c15aa5a7b
commit 601d27a742
2 changed files with 9 additions and 3 deletions

View File

@ -825,6 +825,12 @@ https://emacs.stackexchange.com/a/30691
:commands (org-capture org-agenda) :commands (org-capture org-agenda)
:hook (org-mode . efs/org-mode-setup) :hook (org-mode . efs/org-mode-setup)
:config :config
(setq org-todo-keywords
'((sequence
"TODO(t)"
"HOLD(h)"
"KILL(k)"
"DONE(d)")))
(setq org-ellipsis " ▾") (setq org-ellipsis " ▾")
(setq org-hide-emphasis-markers t) (setq org-hide-emphasis-markers t)
(setq org-src-fontify-natively t) (setq org-src-fontify-natively t)

View File

@ -48,7 +48,7 @@ windows에서 기본으로 제공하는 openssh는 proxycommand등의 기능이
*** Neovim *** Neovim
#+begin_src shell #+begin_src shell
choco install neovim -y choco install neovim neovide -y
choco install ctags -y choco install ctags -y
cp -r $HOME/.dotfiles/.config/nvim $HOME/AppData/Local cp -r $HOME/.dotfiles/.config/nvim $HOME/AppData/Local
#+end_src #+end_src
@ -60,8 +60,8 @@ Context 메뉴 추가
#+begin_src shell #+begin_src shell
# Edit with neovim context menu # Edit with neovim context menu
reg add HKEY_CLASSES_ROOT\*\shell\NeoVim /t REG_SZ /d "Edit with NeoVim..." /f reg add HKEY_CLASSES_ROOT\*\shell\NeoVim /t REG_SZ /d "Edit with NeoVim..." /f
reg add HKEY_CLASSES_ROOT\*\shell\NeoVim /v Icon /t REG_SZ /d "C:\tools\neovim\Neovim\bin\nvim-qt.exe" /f reg add HKEY_CLASSES_ROOT\*\shell\NeoVim /v Icon /t REG_SZ /d "C:\ProgramData\chocolatey\bin\neovide.exe" /f
reg add HKEY_CLASSES_ROOT\*\shell\NeoVim\Command /t REG_SZ /d "C:\tools\neovim\Neovim\bin\nvim-qt.exe """"%1""""" /f reg add HKEY_CLASSES_ROOT\*\shell\NeoVim\Command /t REG_SZ /d "C:\ProgramData\chocolatey\bin\neovide.exe """"%1""""" /f
#+end_src #+end_src
Plugin Manager 설치 Plugin Manager 설치