this post was submitted on 02 May 2026
73 points (95.1% liked)

Linux

65026 readers
940 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 7 years ago
MODERATORS
 

Changing from a distro that defaults to nano to another that defaults to vim... What to do other than installing nano and changing visudo?

top 50 comments
sorted by: hot top controversial new old
[–] nullify3112@lemmy.world 3 points 1 hour ago

I am a noob. My server is a MacMini running Ubuntu server because it was easy to install. I have a website, Jellyfin and nexcloud.

I don’t have the brain cells to understand VIM.

In the CLI, I use nano, always. In the GUI, I use Sublime text because the colors are very pretty.

[–] tehn00bi@lemmy.world 10 points 4 hours ago

NANO I just need simple, and tell an me how to save and exit without abstract key codes.

[–] belated_frog_pants@beehaw.org 1 points 2 hours ago

Whatever is installed i dont care tbh.

[–] HamsterRage@lemmy.ca 3 points 4 hours ago (1 children)
[–] quantumvoid0@lemmus.org 2 points 4 hours ago
[–] mholiv@lemmy.world 2 points 4 hours ago

Big fan of Helix. Best part is that it dose not need any plugins to be a modern editor. Just configure any LSPs you want and it all just works including things like fuzzy finding, multiple cursors, file browsing etc.

[–] enshu@lemmy.world 3 points 5 hours ago

I used Neovim for a couple of years and then switched to Emacs. I love it.

[–] mathemachristian@lemmy.ml 12 points 7 hours ago
[–] Alvaro@lemmy.blahaj.zone 1 points 4 hours ago

Vim is worth learning minimally because it is so common, but U am team nano because I have enough info in my brain and I don't edit text files in the terminal enough to make it worth remembering how to properly use vim

[–] fum@lemmy.world 2 points 6 hours ago

I use the vi family of text editors in a CLI environment because it is part of the POSIX standard.

Even if nano is the default, vi will be there too, and I can just use that. Plus, if you know some basic vi commands, then you can get by without nano, and you don't need to know nano to use it for basic stuff as it shows you the key combos.

[–] pwxd@lemmy.zip 1 points 5 hours ago

When I was new at linux, I used nano and vs code; mostly because I don't want to learn the shortcut / keybind.

Started ricing with XFCE, tried to use keybind as much as possible and as minimalist as possible; that's where I slowly dip my toes into WMs.

SwayWM was my first WM and I don't think I'll ever switch other than that, that's also how I discovered vim; it was difficult at first but I got used to it very fast.

[–] ironbeak@lemmy.ca 5 points 9 hours ago

Used to be vim back in the day, neovim with a few lsp plugins — hated the convoluted collection of config scripts — then into vis (modernized vim/sam hybrid) but now settled on helix. After a small adjust for some finger memory, I wouldn’t go back. A lot of quality of life features out of the box.

I just a modal editor that just works with some quality of life features as codebases I worked on grew in complexity.

[–] BradleyUffner@lemmy.world 13 points 13 hours ago* (last edited 13 hours ago) (2 children)

Nano, because it's the only one I can remember how to quit from without power cycling the computer.

[–] h54@programming.dev 1 points 2 hours ago

Either you forgot your sarcasm tag or you shouldn't be using computers 🤣.

[–] Cyber@feddit.uk 7 points 9 hours ago

Top Tip: open another terminal and kill the task from there

( /s )

[–] frog_brawler@lemmy.world 13 points 16 hours ago (1 children)

Vim, but I also find this battle completely stupid.

[–] racketlauncher831@lemmy.ml 1 points 11 hours ago (1 children)

No only OP provided almost no discussion value in the post body, but also this topic has been discussed one million times and nothing more can be talked about.

[–] SocialistVibes01@lemmy.ml 1 points 5 hours ago (1 children)

Isn't the chance for us Lemmings to share experiences a good enough reason to start this thread?

[–] racketlauncher831@lemmy.ml 1 points 2 hours ago (1 children)

To be frank, not really. What's so special about us Lemmings? I mean, so many other people brighter and more experienced than us have already shared. Whatever we said here can only be a subset to that at most, then why not just read the old threads.

[–] SocialistVibes01@lemmy.ml 1 points 2 hours ago (1 children)

Understandable, have a good day!

[–] racketlauncher831@lemmy.ml 1 points 2 hours ago (1 children)

Same to you. Happy holiday.

[–] SocialistVibes01@lemmy.ml 2 points 1 hour ago

I appreciate the sentiment. No tru holiday under the evil Empire's hammer tho.

[–] dizzle8@lemmy.ml 4 points 12 hours ago

I typically use nano for the quicker edits but enjoy using vim otherwise.

[–] solomonschuler@lemmy.zip 8 points 15 hours ago (1 children)
[–] zstg@programming.dev 1 points 11 hours ago
[–] savvywolf@pawb.social 12 points 17 hours ago (1 children)

Emacs.

With all the vimmery going around nowadays though, I feel like I'm on the losing team. ;_;

[–] wuphysics87@lemmy.ml 5 points 13 hours ago (1 children)
[–] Corngood@lemmy.ml 5 points 12 hours ago

Still team Emacs. We're a team because we use elisp, not because of something trivial like how our text editors work.

[–] dparticiple@sh.itjust.works 37 points 21 hours ago* (last edited 15 hours ago) (5 children)

At the risk of restarting the Editor wars (https://en.wikipedia.org/wiki/Editor_war) from days of yore, I find it interesting that emacs wasn't even in your list of contenders. I hear it mentioned less frequently these days, so perhaps it's going by the wayside?

For the record, I'm a vi/vim user! I had the privilege of being taught to use it by an RFC-writing greybeard decades ago, and have used it without thinking ever since.

For those who find themselves on a machine with only vi/vim, or want to learn, here's a quick primer when editing a file (usually done by typing "vi foo.txt" in a shell) --

:q! ...Force quit vi (:q also works -- gentler!)

:wq! ...Save file and quit vi

i (then type characters) ...insert text at current position

A (then type characters) ...Insert at end of current line

G ...go to first character of last line in the file

/foo ...search for first occurrence of "foo" in the file (hit / again to find additional instances)

x ...Delete character under cursor

:56 ...Go to line 56

yy ...Copy the line the cursor is currently on into the buffer

p ... Paste the buffer

r (then type character) ...Replace character under cursor

u ...undo (hit multiple times to undo prior actions)

When done with a command like this, hit Esc to go back into normal mode.

Second nature after a bit of practice! I used to work with a guy who insisted on using ed. That was... odd.

[–] kaiyo@piefed.ca 7 points 18 hours ago (2 children)

Yeah but op was comparing editors, not OS's. https://emacsos.dev/

load more comments (2 replies)
load more comments (4 replies)
[–] pineapple@lemmy.ml 9 points 16 hours ago (1 children)

I use nano because I haven't learned how to use anything else yet.

load more comments (1 replies)
[–] Levi@lemmy.ca 58 points 23 hours ago (3 children)

Team Vim. Because I learned the vim basics once 20 years ago and never bothered to learn after that. :D

load more comments (3 replies)
[–] swab148@lemmy.dbzer0.com 16 points 19 hours ago (1 children)
[–] notptr@lemmy.cyberia9.org 3 points 2 hours ago

Surprise unix_surrealism

[–] jbrains@sh.itjust.works 10 points 18 hours ago (3 children)
load more comments (3 replies)
[–] Infrapink@thebrainbin.org 12 points 19 hours ago (1 children)

I'm an emacs -nw kind of guy.

But if I have to pick one of your options, nano

load more comments (1 replies)
[–] solrize@lemmy.ml 8 points 18 hours ago

"Why are we running from the police, Dad?"

"Because they use vim, son. We use Emacs".

[–] Rindogang@lemmy.ml 24 points 22 hours ago (3 children)

I use Helix... Uhhh idk I think it's nice I guess

[–] Amaterasu@lemmy.world 4 points 12 hours ago (1 children)

Helix for modal, Fresh for non-modal.

[–] Overspark@piefed.social 2 points 3 hours ago

Hmmm, Fresh looks interesting, didn't know about that one!

load more comments (2 replies)
[–] SpaceNoodle@lemmy.world 16 points 21 hours ago (12 children)

nano. I can't memorize esoterica.

load more comments (12 replies)
[–] electric_nan@lemmy.ml 9 points 19 hours ago

Nano. It's easy and I've never had a reason to change.

[–] eager_eagle@lemmy.world 22 points 23 hours ago

micro for sensible defaults out of the box, and because I don't like modal editors.

load more comments
view more: next ›