فهرست منبع

remove install script for now

Chris 4 سال پیش
والد
کامیت
222425157e
3فایلهای تغییر یافته به همراه8 افزوده شده و 26 حذف شده
  1. 3 21
      README.md
  2. 4 4
      init.lua
  3. 1 1
      lua/nv-nvimtree/init.lua

+ 3 - 21
README.md

@@ -2,18 +2,6 @@
 
 
 If you are looking for my old configs checkout the two snapshot branches on this repo, there is one for CoC and one for Native LSP
 If you are looking for my old configs checkout the two snapshot branches on this repo, there is one for CoC and one for Native LSP
 
 
-## Install in one command
-
-**WARNING** Still very experimental will not work without some configuation
-
-You will need to run `nv` then `:PackerInstall` ignore the errors that are presented 
-
-```bash
-bash <(curl -s https://raw.githubusercontent.com/ChristianChiarulli/nvcode/master/utils/installer/install-nv-code.sh)
-```
-
-After running you will have access to the `nv` command, this WILL NOT overwite your nvim config. So you can have both installed at the same time
-
 ## Get the latest version of Neovim 
 ## Get the latest version of Neovim 
 
 
 ```bash
 ```bash
@@ -42,12 +30,6 @@ Point your `init.lua` path to:
 $HOME/.config/nvim/lua/nv-vscode/init.lua
 $HOME/.config/nvim/lua/nv-vscode/init.lua
 ```
 ```
 
 
-or if you are using this config alongside your own:
-
-```vim
-$HOME/.config/nvim/lua/nv-vscode/init.lua
-```
-
 ## efm server is slow on close
 ## efm server is slow on close
 
 
 Install the latest with:
 Install the latest with:
@@ -99,14 +81,14 @@ git config --global github.user <username>
 **HIGH PRIORITY**
 **HIGH PRIORITY**
 - list all binaries needed for functionality
 - list all binaries needed for functionality
 - learn what opt is
 - learn what opt is
-- better install script, support both nvim and nvcode paths
 - learn nvim-dap in depth
 - learn nvim-dap in depth
 - snippet support
 - snippet support
 - for vsnip :h vim-vsnip, also figure out what integr does
 - for vsnip :h vim-vsnip, also figure out what integr does
-
-**LOW PRIORITY**
 - add utf8 line col and spaces (maybe blame)
 - add utf8 line col and spaces (maybe blame)
 - potentially switch to dashboard
 - potentially switch to dashboard
+
+**LOW PRIORITY**
+- better install script, support both nvim and nvcode paths
 - make java code actions prettier
 - make java code actions prettier
 - figure out how to customize java formatting
 - figure out how to customize java formatting
 - setup junit tests for java
 - setup junit tests for java

+ 4 - 4
init.lua

@@ -1,6 +1,6 @@
-vim.cmd('set rtp+=~/.config/nvcode')
+-- vim.cmd('set rtp+=~/.config/nvcode')
 if vim.g.vscode then
 if vim.g.vscode then
-  vim.cmd('source ~/.config/nvcode/vimscript/nv-vscode/init.vim')
+  vim.cmd('source ~/.config/nvim/vimscript/nv-vscode/init.vim')
   require('settings')
   require('settings')
   require('nv-quickscope')
   require('nv-quickscope')
 else
 else
@@ -36,8 +36,8 @@ else
   require('nv-galaxyline')
   require('nv-galaxyline')
 
 
   -- Which Key (Hope to replace with Lua plugin someday)
   -- Which Key (Hope to replace with Lua plugin someday)
-  vim.cmd('source ~/.config/nvcode/vimscript/nv-whichkey/init.vim')
-  vim.cmd('source ~/.config/nvcode/vimscript/functions.vim')
+  vim.cmd('source ~/.config/nvim/vimscript/nv-whichkey/init.vim')
+  vim.cmd('source ~/.config/nvim/vimscript/functions.vim')
 
 
   -- LSP
   -- LSP
   require('lsp')
   require('lsp')

+ 1 - 1
lua/nv-nvimtree/init.lua

@@ -52,4 +52,4 @@ vim.g.nvim_tree_bindings = {
     ["-"] = tree_cb("dir_up"),
     ["-"] = tree_cb("dir_up"),
     ["q"] = tree_cb("close")
     ["q"] = tree_cb("close")
 }
 }
-vim.cmd([[source ~/.config/nvcode/vimscript/nv-nvimtree/init.vim]])
+vim.cmd([[source ~/.config/nvim/vimscript/nv-nvimtree/init.vim]])