Video není dostupné.
Omlouváme se.

Noobvimming: My personal neovim configuration.

Sdílet
Vložit
  • čas přidán 15. 08. 2024

Komentáře • 24

  • @JustAGuyLinux
    @JustAGuyLinux  Před měsícem

    NOTE: Please review the github.com/drewgrif/nvim/blob/main/README.md for Installation notes.

  • @r3lativ
    @r3lativ Před měsícem +5

    All you need to do to have neovim show up in rofi, in the file manager, the list of applications, etc., is to have a .desktop file for it.

  • @Mike-sz8pk
    @Mike-sz8pk Před měsícem +2

    "I choose to install things natively" love that. Great approach, it could be overwhelming at the beginning.

    • @herrpez
      @herrpez Před měsícem

      Agreed. My only personal exception is DoubleCommander... because for some weird reason the native version just would not behave well the last time I tried it. Now... I can't remember the specifics, but it was enough to make me go the AppImage route. I make up for it by routinely compiling Emacs, I guess. 😉

  • @donaldwilliams6821
    @donaldwilliams6821 Před měsícem +1

    Another great video. There is also neovide (not in deb repo) That is a full graphical wrapper for your neovim config. You do need neovim installed. Has some nice features

  • @donaldwilliams6821
    @donaldwilliams6821 Před měsícem +3

    Side note: If someone has an existing neovim config then need to rename ~/.config/nvim but also ~/local/share;nvim and ~/.local/state/nvim Plugins and other config files are there. Which could interfere with your new config of neovim The lazyvim github page has more info and some commands on how to do it

  • @lqlarry
    @lqlarry Před měsícem +3

    Nvim: So many plugins, so little time.

  • @donaldwilliams6821
    @donaldwilliams6821 Před měsícem +1

    I do like your config I like the pop up window for telescope

  • @Onyx-it8gk
    @Onyx-it8gk Před měsícem +1

    I switched to Helix, which is vi/vim/nvim written in Rust. My coreutils will eventually be replaced with the Rust coreutils. I'm using Sky WM based on the penrose library, written in Rust, slightly modified. Has a very minimalistic i3/Sway feel to it. C/C++ is just way too buggy and I think it's time we educated ourselves on the advantages Rust brings and raise a new generation of Linux users who are knowledgeable about the software they use.

  • @liquidmobius
    @liquidmobius Před měsícem +1

    You should do hypr wm. It's made by the same developer of hyprland except for X11 and I'm fairly certain it runs on Debian stable. Surprised more people don't know about it. It's definitely a better alternative than running Trixie/Sid just for hyprland for those of us who use stable.

  • @afroceltduck
    @afroceltduck Před měsícem +2

    When I was on Debian, I just downloaded and ran the binary directly. To update, just delete the binary folder and repeat the process with the new release. I don't know if it integrates in file managers and rofi and the like, because I just run it from the terminal.

  • @itsfish8672
    @itsfish8672 Před měsícem +2

    Now I want to watch your micro vid

    • @JustAGuyLinux
      @JustAGuyLinux  Před měsícem

      czcams.com/video/TjlnR66srsk/video.htmlsi=jzISoDe3pzx_FSjO

  • @ScottAshmead
    @ScottAshmead Před měsícem +1

    I have taken parts of your install script and added the following so that I can chose the testing/unstable releases on the fly when I install otherwise it is default stable NOTE: link in the policy section for more info......... While getting familiar with NVIM, I have been playing with DOOM EMACS and I almost think I like DOOM EMACS just as much, if not a little bit better but still playing with both
    # If you are going to use other repos then you will want to prioritize them for updates and upgrades
    # These will be for your normal distro stable releases and updates
    echo -e "Package: *
    Pin: release a=stable
    Pin-Priority: 990
    " | sudo tee -a /etc/apt/preferences
    echo -e "Package: *
    Pin: release a=stable-security
    Pin-Priority: 990
    " | sudo tee -a /etc/apt/preferences
    echo -e "Package: *
    Pin: release a=stable-updates
    Pin-Priority: 990
    " | sudo tee -a /etc/apt/preferences
    # This will be for testing repos which will have lower priority than stable and will not overwrite stable unless you specify it to
    echo -e "Package: *
    Pin: release a=testing
    Pin-Priority: 500
    " | sudo tee -a /etc/apt/preferences
    # This will be for unstable repos which will have lower priority than testing and will not overwrite anything unless you specify it to
    echo -e "Package: *
    Pin: release a=unstable
    Pin-Priority: 10
    " | sudo tee -a /etc/apt/preferences
    sudo apt update
    # to confirm above priroty changes took ffect do the following command
    #debian-handbook.info/browse/stable/sect.apt-get.html#sect.apt.priorities
    sudo apt policy
    # This is a less effective option to setting the default repo
    # echo -e 'APT::Default-Release "stable";' | sudo tee -a /etc/apt/apt.conf.d/my-default-release
    sudo apt upgrade -y
    # if you want to do all testing then use the following otherwise leave off the "-t testing" same would apply to unstalbe "-t unstable"
    #sudo apt update -t testing
    #sudo apt upgrade -t testing -y
    #sudo apt update -t unstable
    #sudo apt upgrade -t unstable -y

    • @JustAGuyLinux
      @JustAGuyLinux  Před měsícem +1

      Holy crap Scott. Talk about documentation. I did one vid during bullseye that demonstrated pinning. The goal was to pin just the testing branch kernel.

    • @ScottAshmead
      @ScottAshmead Před měsícem +1

      @@JustAGuyLinux HAHA yeah sometimes I hate when I can't remember the reason I did something the way I did but I appreciate your vids on install scripts and some people just want to have a choice for specific installs that are only available in unstable and this allows it without having to make some changes to file later.... you can just chose on the fly this way.... Hope you keep up the great vids

  • @palanidr1398
    @palanidr1398 Před měsícem +1

    Hi drew just installed DWM using your scripts really enjoying it , can you make video on theming qt apps gtk apps are so easy to customize using nwg looks

  • @edbeckerich3737
    @edbeckerich3737 Před měsícem +1

    Pick out a new TWM to try, set aside all other editors, and only use Vim/NeoVim, and proficiency will build up fast! That made me a Vim user, but stll so much i dont remember! I need a cheat sheet!

  • @MrAlanCristhian
    @MrAlanCristhian Před měsícem +1

    I use nano for everything.

  • @theDevPanda
    @theDevPanda Před měsícem +2

    Flatpak is hard to update? "flatpak update" is about as easy as apt/nala

  • @NatesRandomVideo
    @NatesRandomVideo Před měsícem +1

    I just can’t get excited about neovim as an almost lifelong vim user professionally. Seems overhyped.

    • @cyrus01337
      @cyrus01337 Před měsícem

      It's technically a better Vim currently due to the community rather than the concept alone, though the concept has pushed for some incredible things that I think would make doing similar in Vim highly strenuous from what I've observed. What exactly do you feel is overhyped about it, or what dislikes of Neovim do you have?