Abstract-IDE / Abstract

neovim as an IDE
https://abstract-ide.github.io/site/
MIT License
187 stars 13 forks source link

regarding .config/nvim directory #2

Closed p4nd4tz closed 2 years ago

p4nd4tz commented 2 years ago

Hey dude, Your whole project is awesome, but you are moving your whole directory to '.config/nvim' which make it as git directory. Which is not good. Add something that will not make it as git.

shaeinst commented 2 years ago

I make small changes almost every hour, and making it a git directory helps me test and commit without any extra step.

can you please tell me why?

which make it as git directory. Which is not good. Add something that will not make it as git.

p4nd4tz commented 2 years ago

  if [ ! -d "$nvim_conf_path" ]; then
    cd $current_dir
    cp ../roshnivim "$nvim_conf_path" -r ```

think about it again. we would not like to have '.config/nvim/' as git.You should add a code remove setup.sh, LICENSE, README.md from '.config/nvim' after coping.
shaeinst commented 2 years ago

ok, this makes sense. i will do this soon

shaeinst commented 2 years ago

@Abhishek416 i have converted setup.sh to setup.py. now you can install the roshnivim without keeping .git, README.md, ... by passing --delete 1 as argument while running setup.py script

For Example:

python setup.py --delete 1

or, single command to install clean roshnivim:

python <(curl -s https://raw.githubusercontent.com/shaeinst/roshnivim/main/setup.py) --delete 1