Getting Started With SpaceVim!

Поделиться
HTML-код
  • Опубликовано: 6 окт 2024
  • **PLEASE NOTE**
    You do NOT need to add any configurations to your "SpaceVim.vim" file! All the configurations you need for either Vim or the various plugins you have, can be done in your "myconfig.vim" file. Please note, that most of these configurations can be done under the "function! myconfig#after() abort" section of your "myconfig.vim" file. Any other settings, specifically that has 'let g' at the beggining, will go under the "function! myconfig#before() abort" section of your "myconfig.vim" file. Please see my "myconfig.vim" file from my GitLab as an example. Thank you!
    Thanks for watching!
    *My Mastodon Profile: fosstodon.org/...
    *My GitLab: gitlab.com/Git...
    *SpaceVim Website: spacevim.org/
    *"VimProc's DLL Error: github.com/Spa...
    *My SpaceVim Config Files: gitlab.com/Git...

Комментарии • 53

  • @wsdjeg
    @wsdjeg 3 года назад +75

    SpaceVim author here, thank you for sharing!

    • @yolob2116
      @yolob2116 3 года назад +2

      dude how do to save a file with name, for the love of god cant figure it out

    • @AnitaSV
      @AnitaSV 2 года назад +4

      @@yolob2116 :w name

    • @creative-commons-videos
      @creative-commons-videos 2 года назад +2

      is it using neovim behind or it's a different ?

    • @SpaceVim
      @SpaceVim 2 года назад

      @@yolob2116 You can use key binding `SPC f a`

    • @johndoucette3687
      @johndoucette3687 Год назад

      Can you tell me the command to record a macro. The vim documentation is arcane at best. I know q like in regular vim has been remapped. qr give an error message. I found \qrX somewhere it also returns an error message.

  • @JoshJetson
    @JoshJetson Год назад +2

    You just gave the easiest most comprehensive tutorial for spacevim! Thank you man your awesome you managed to compile all the most important things you would otherwise be jumping all around the documentation for. Keep rocking and rolling you killing it !!

  • @devmanek
    @devmanek 3 года назад +7

    It's sad how under rated some channels are.
    Great Job!

  • @codewithnacho
    @codewithnacho Год назад

    Great tutorial on Spacevim! I'll be fun to see more on how to configure Spacevim as an IDE for different programming Languages.

  • @djukicdev
    @djukicdev 2 года назад +3

    Thank you!

  • @marcuswest4572
    @marcuswest4572 Год назад

    Very good demonstration. You could even enlarge your text and slow down on certain points. But you have really helped me launch SV and I do believe you can teach quite a bit more on the subject.

  • @mikeafter5
    @mikeafter5 2 года назад +2

    Thank you!!

  • @johnnyr8737
    @johnnyr8737 3 года назад +3

    great info, thank you

  • @kone2401
    @kone2401 3 года назад +4

    thanks for the vid!

  • @anuragbisht1200
    @anuragbisht1200 Год назад

    thank you for such a great tut.

  • @kp_2860
    @kp_2860 3 года назад +4

    Good job bro 👍
    it's helped me a lot

  • @neilclay5835
    @neilclay5835 Год назад

    It's been a long time so I'm a bit rusty, but that stdio.h error at 4:23 means that your C standard library is not installed properly (or at all). It could probably be resolved by installing the dev-tools for your distribution. So
    sudo apt update
    sudo apt install build-essential

  • @harishkalva6237
    @harishkalva6237 3 года назад +3

    your video was very helpful bro

  • @toddholdman5540
    @toddholdman5540 2 года назад +1

    Thanks

  • @ritchielrez1680
    @ritchielrez1680 3 года назад +7

    Seeing him using Linux Mint: Oh!! A noob.
    Then start using a tiling wm: Well, forget it!!

    • @harishkalva6237
      @harishkalva6237 3 года назад +6

      Bro chosing a distro of choice doesn't mean someone is a noob or pro. It depends on how the person uses it

    • @FredySandoval_123
      @FredySandoval_123 3 года назад +4

      Yeah. I use arch and I consider myself a super noob

  • @Kasiux
    @Kasiux 2 года назад +2

    somehow my icons wont load

  • @relytheone853
    @relytheone853 2 года назад +1

    How should I install a C intellisense? Please help!!!

  • @seanknowles9985
    @seanknowles9985 Год назад

    How to setup wakatime with SpaceVim, struggling here...

  • @johndoucette3687
    @johndoucette3687 Год назад

    I have been searching for what seems like forever for the command to record a macro in spacevim. Can anybody help?

  • @joserobertoalanisbaez
    @joserobertoalanisbaez 3 года назад +2

    do you have build-essentials package installed,?

    • @3six100
      @3six100  3 года назад

      No, I'm on Arch Linux. While there is a similar program called "base-devel", I just used "curl" to install SpaceVim.

    • @joserobertoalanisbaez
      @joserobertoalanisbaez 3 года назад +1

      @@3six100 ok, for vimproc you may need base-devel to check this up. i didn't look at the plugin dir, so I went to pull vimproc from github and compile it.

    • @3six100
      @3six100  3 года назад

      Smart thinking! I guess their are multiple ways to fix that annoying error message!

  • @Mrh168
    @Mrh168 3 года назад

    I have no idea how to use the TODO manager it's under SCP > a > o

    • @3six100
      @3six100  3 года назад

      This works kind of like a comment. You start by adding either @fixme, @question, @todo or @idea. Then you add something to that label that makes sense to you. Comment out that line and you're done! This is most useful when working with a team on a project, so you can communicate problems/ideas to your other teammates. Just use the keybinding SPC >a >o, as you described, to get access to all available "TODO's" in a given project.
      I've looked through SpaceVim's documentation on this feature, but nothing really pops up. It seems like a feature that's their, but not well documented...

    • @Mrh168
      @Mrh168 3 года назад

      @@3six100 I'm doing something wrong I'm getting this error E21: Cannot make changes, 'Modifiable' is off

    • @3six100
      @3six100  3 года назад

      Go into command mode and enter ":set ma" on the file you're working on. That should fix it!
      Source: stackoverflow.com/questions/5745506/vim-modifiable-is-off

    • @Mrh168
      @Mrh168 3 года назад

      @@3six100 Ok tx its working in the spacevim projects but not in my own php project folder . do yo know if a file or something i must copy over ?

    • @3six100
      @3six100  3 года назад

      It only works when you're in a "git" directory. I have a video on how to use "git" here: ruclips.net/video/kvjmcUjlFw0/видео.html

  • @alexzander__6334
    @alexzander__6334 3 года назад

    make font size bigger!!!

    • @3six100
      @3six100  3 года назад

      I will make the terminal font bigger in ALL upcoming videos that involve the terminal. Sorry for the inconvenience...

    • @alexzander__6334
      @alexzander__6334 3 года назад

      @@3six100 don't worry, I didn't want to be mean

    • @3six100
      @3six100  3 года назад

      You're fine! I've just been slacking when it comes to zooming in the terminal...

  • @bwheater007
    @bwheater007 3 года назад

    Font too small. it hurts my eyes. Please use 15pt -mark as dislike

    • @3six100
      @3six100  3 года назад +1

      If you wish to change the font of SpaceVim, go to the "init.toml" file and change the "11" in the following line to a "15": guifont = "mononoki Nerd Font:h11"
      Have a nice day!

    • @docmalitt
      @docmalitt 3 года назад

      Hey, I think he meant (sorry if I’m wrong) about the font size (zoom in/out) for this video. I had to switch from my tablet to computer for the second half to follow your configs. You gotta think of us “elderly” Vim enthusiasts. Great 👍 video btw. Thx.

    • @bwheater007
      @bwheater007 3 года назад +1

      I was referring to text size in the video -- its microscopic -- unviewable on tablets, TV.

    • @3six100
      @3six100  3 года назад

      Someone else mentioned that as well. I will zoom in with any future video that involves Vim or the terminal. Thanks for the feedback and sorry for the misunderstanding...

  • @felixmoure11
    @felixmoure11 2 года назад

    you are missing stdio.h which is part of c standar lib, try installing package build-essential if not try libc-devel. go back and type make. Im not linux mint fan sorry

  • @motif5775
    @motif5775 3 года назад +3

    Thank you!!