Changing from a distro that defaults to nano to another that defaults to vim... What to do other than installing nano and changing visudo?
Changing from a distro that defaults to nano to another that defaults to vim... What to do other than installing nano and changing visudo?
171 Comments
Levi@lemmy.ca · 69 pts · 113d
Team Vim. Because I learned the vim basics once 20 years ago and never bothered to learn after that. :D
KingGordon@lemmy.world · 12 pts · 113d
I see you and raise straight vi.
azimir@lemmy.ml · 7 pts · 113d
That's what I was taught at my first tech internship. It's all they had on the UNIX system running the webserver in 1998.
I did write some web pages the pulled live data from the backend. I had the pleasure of writing them in C. I got the data binding to some kind of CORBA system using extern variables that were bound at compile time. All of the html (no js or css yet) was hand built and generated from the C code.
vi was the only editor on the system and there was no way to use arrow keys (the UNIX system didn't have them on the keyboard at all).
I also had the displeasure of building a backup system on a floppy where I had to write a bat script that could manually load a token ring driver, bind a SMB share, load Ghost backup software and backup the local hard drive at under 2mb (yay coax thicknet). The tool used to query and write through the hostname for the backup? Copycon. Fucking copycon in DOS. That showed me how a terrible (but working) tool could be to work with.
Unless an editor can do reasonable vim emulation, I can't take it seriously. You're welcome to use it, but I won't be able to get anything done in it quickly. The vi keys are too ground into my reflexes.
HeHoXa@lemmy.zip · 7 pts · 113d
Vim sorely underrated. Great tools/hotkeys. Felt like a master pianist clacking away while the terminal went berserk until suddenly the 2 hour job was done in 20 minutes.
dparticiple@sh.itjust.works · 42 pts · 113d
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 · 8 pts · 113d
Yeah but op was comparing editors, not OS's. https://emacsos.dev/
solomonschuler@lemmy.zip · 2 pts · 113d
dparticiple@sh.itjust.works · 2 pts · 112d
Heh. Sounds like a modern variant of Zawinski's Law: https://www.laws-of-software.com/laws/zawinski/
Gonzako@lemmy.world · 3 pts · 113d
:h?
MangoCats@feddit.it · 1 pts · 113d
:q
JustEnoughDucks@slrpnk.net · 1 pts · 112d
Been using it (not often beyond basics for home server container administration) for years but I always get confused with searching vs search and replace vs global search
/ (n for next instances)
:%s//
:g//p (grep was named after this one IIRC, Global Regular Expression Print)
And often I just use :%s to search and highlight all instances and don't press enter because I forget the others and I often have to search and replace for docker comppse snippets.
SocialistVibes01@lemmy.ml · 1 pts · 113d
Not in my case but part of Emacs' downward-trending mindshare could be due to RMS himself.
RichardNixos@lemmy.ml · 2 pts · 113d
Is RMS still actively involved in Emacs?
Rindogang@lemmy.ml · 26 pts · 113d
I use Helix... Uhhh idk I think it's nice I guess
BartyDeCanter@piefed.social · 11 pts · 113d
There are dozens of us!
Rindogang@lemmy.ml · 4 pts · 113d
🤝
Amaterasu@lemmy.world · 4 pts · 113d
Helix for modal, Fresh for non-modal.
Overspark@piefed.social · 3 pts · 112d
Hmmm, Fresh looks interesting, didn't know about that one!
eager_eagle@lemmy.world · 24 pts · 113d
micro for sensible defaults out of the box, and because I don't like modal editors.
SrMono@feddit.org · 21 pts · 113d
Neovim
thingsiplay@lemmy.ml · 4 pts · 113d
I found the correct answer.
thingsiplay@lemmy.ml · 20 pts · 113d
Team Neovim.
I looked into ed, then decided its not for me.
SpaceNoodle@lemmy.world · 19 pts · 113d
nano. I can't memorize esoterica.
geneva_convenience@lemmy.ml · 0 pts · 113d
That's who micro exist. And is so much better.
SpaceNoodle@lemmy.world · 11 pts · 113d
nano still wins. All the shortcuts are listed at the bottom.
geneva_convenience@lemmy.ml · 1 pts · 113d
Micro doesn't need to list the shortcuts because it uses similar shortcuts to notepad and you don't have to do weird ctrl+x to exit but ctrl+q (for quit). Also copy and pasting isn't a nightmare in it.
SpaceNoodle@lemmy.world · 4 pts · 113d
Copy and paste in nano work just fine - no clue what you're talking about. It uses standards established in the '80s - Ctrl-X for eXit being an even older standard - and clearly lists them visibly for a quick reminder.
geneva_convenience@lemmy.ml · 1 pts · 113d
Yeah cutting text with ctrl+k instead of ctrl+x (because that's exit) and copying with alt +6 instead of ctrl+c.
Le
Mao.
juipeltje@lemmy.world · 3 pts · 113d
In emacs ctrl+y is paste, which is weird to me because i'm pretty sure even in emacs the logic is that y stands for yank, but in every other program i've used so far yank means copy, not paste. In the end though i feel like muscle memory from other editors don't bother me as much, and i can learn multiple at the same time. I started with evil mode for vim bindings for a short while, but now i'm diving into pure emacs bindings.
SpaceNoodle@lemmy.world · 2 pts · 113d
Yeah, that's what the shortcut hint shows, champ.
geneva_convenience@lemmy.ml · -3 pts · 113d
Why doesn't my Lemmy comment box show shortcut hints? How will I know the shortcut for copy, cut and paste? I tried pressing alt+6 but it did nothing. Curse you Ecmascript from 1997!
zloubida@sh.itjust.works · 19 pts · 113d
nano for quick things; emacs for longer typing sessions.
SocialistVibes01@lemmy.ml · 0 pts · 113d
Emacs its a so-so operating system (that devours your ssd) with a not do good embedded text editor
zloubida@sh.itjust.works · 5 pts · 113d
It works well for me. I love how easily I can adapt it for my needs.
django@discuss.tchncs.de · 4 pts · 113d
Emacs comes with Evil mode, which has vim keybindings, which makes it a pretty good text editor.
tehn00bi@lemmy.world · 18 pts · 112d
NANO I just need simple, and tell an me how to save and exit without abstract key codes.
mathemachristian@lemmy.ml · 18 pts · 113d
Emacs
Aatube@lemmy.dbzer0.com · 3 pts · 112d
how do y’all deal with that pinky
mathemachristian@lemmy.ml · 5 pts · 112d
swab148@lemmy.dbzer0.com · 15 pts · 113d
notptr@lemmy.cyberia9.org · 4 pts · 112d
Surprise unix_surrealism
pmjv@lemmy.world · 2 pts · 110d
swab148@lemmy.dbzer0.com · 2 pts · 109d
You know you've made it as a content creator when other content creators redistribute your content!
pmjv@lemmy.world · 2 pts · 109d
BradleyUffner@lemmy.world · 15 pts · 113d
Nano, because it's the only one I can remember how to quit from without power cycling the computer.
Cyber@feddit.uk · 9 pts · 113d
Top Tip: open another terminal and kill the task from there
( /s )
ScoffingLizard@lemmy.dbzer0.com · 1 pts · 108d
You are in edit mode and you need to get out of it. Press ESC, and then colon which will show in the text area at bottom of window. If you want to save, push w, then q and the enter to quit. If you want to quit without saving, you have to force with !.
Escape, colon, (W)ith save, (Q), Enter
Or
Escape, colon, (Q)uit, !, Enter
If you just want to use the text editor commands, you just do escape to be able to enter text on the line.
h54@programming.dev · -3 pts · 112d
Either you forgot your sarcasm tag or you shouldn't be using computers 🤣.
savvywolf@pawb.social · 14 pts · 113d
Emacs.
With all the vimmery going around nowadays though, I feel like I'm on the losing team. ;_;
wuphysics87@lemmy.ml · 6 pts · 113d
Join us! Use Evil mode!
Corngood@lemmy.ml · 6 pts · 113d
Still team Emacs. We're a team because we use elisp, not because of something trivial like how our text editors work.
frog_brawler@lemmy.world · 13 pts · 113d
racketlauncher831@lemmy.ml · 1 pts · 113d
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 pts · 112d
Isn't the chance for us Lemmings to share experiences a good enough reason to start this thread?
racketlauncher831@lemmy.ml · 1 pts · 112d
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 pts · 112d
Understandable, have a good day!
racketlauncher831@lemmy.ml · 1 pts · 112d
Same to you. Happy holiday.
SocialistVibes01@lemmy.ml · 3 pts · 112d
I appreciate the sentiment. No tru holiday under the evil Empire's hammer tho.
ScoffingLizard@lemmy.dbzer0.com · 1 pts · 108d
Sure, but now I'm curious about all this helix business, and what's up with org mode in EMACS? Like, y'all can do presentations in a CLI editor? Is it that text-to-diagram code or something?
Infrapink@thebrainbin.org · 13 pts · 113d
I'm an
emacs -nwkind of guy.But if I have to pick one of your options,
nanocorsicanguppy@lemmy.ca · 1 pts · 113d
...but only to mod the repo config to install emacs-nox. After that having seen the resource usage is the same as vi just use what's most versatile.
BartyDeCanter@piefed.social · 12 pts · 113d
Helix when I can install things, vi when I can't.
Sxan@piefed.zip · -3 pts · 113d
I generally install boþ if I can, too, because helix still has no equivalent for
vim -d. Diffs are þe only reason I run vi(m) anymore.Diplomjodler3@lemmy.world · 12 pts · 113d
I only ever use a terminal based editor for making quick edits of config files, so nano works just fine for me.
electric_nan@lemmy.ml · 11 pts · 113d
Nano. It's easy and I've never had a reason to change.
jbrains@sh.itjust.works · 11 pts · 113d
Helix
pineapple@lemmy.ml · 3 pts · 113d
I've never heard of helix before, is it any good?
mholiv@lemmy.world · 4 pts · 112d
I use it daily and think so. 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.
This all being said a plugin system is close to being added. :)
jbrains@sh.itjust.works · 3 pts · 112d
Imagine vim designed today.
clay_pidgin@sh.itjust.works · 2 pts · 113d
Which, for those not already knowing, is basically a reboot of VIM.
nous@programming.dev · 10 pts · 113d
I have switched to using helix, so no matter which distro I am on I need to change it to be my default by setting the EDITOR env var.
pineapple@lemmy.ml · 10 pts · 113d
I use nano because I haven't learned how to use anything else yet.
MangoCats@feddit.it · 5 pts · 113d
I use nano because it's always there.
pineapple@lemmy.ml · 2 pts · 111d
this too
mik3dd0@lemmy.ml · 10 pts · 113d
vim
pelya@lemmy.world · 9 pts · 113d
mcedit
Shimitar@downonthestreet.eu · 9 pts · 113d
Vim forever, any flavour, don't care.
Why? Does actually exist anything else for the terminal?
solrize@lemmy.ml · 9 pts · 113d
"Why are we running from the police, Dad?"
"Because they use vim, son. We use Emacs".
SocialistVibes01@lemmy.ml · 8 pts · 113d
I realized that I'd forgotten about pico and joe, the latter was my very first text editor (hated it!).
thingsiplay@lemmy.ml · 7 pts · 113d
There are also Helix and Microsoft Edit.
Kruulos@sopuli.xyz · 1 pts · 111d
I knew someone would mention joe! It was the first editor I was taught.
solomonschuler@lemmy.zip · 8 pts · 113d
zstg@programming.dev · 2 pts · 113d
One of us!
iByteABit@lemmy.ml · 7 pts · 113d
I used to use Neovim but now I mainly use Helix, it's really good by default, the most hassle is usually just looking up an LSP for a language and installing it.
My config file literally only has the theme I use, unlike the heavy configs I'd have to make so that vim/nvim are the way I want. I also like the multiple cursor approach it has to editing.
clay_pidgin@sh.itjust.works · 1 pts · 113d
You do!? I cannot STAND it! Am I using it wrong? C to add another cursor on the line below but only if it already has a character in that column. It seems strictly worse than VIM's visual line selection with V.
iByteABit@lemmy.ml · 3 pts · 112d
For use cases like that it's usually better to search a pattern and split it to cursors. Also using line selects helps.
I remember being annoyed at what you said but I guess I was overusing C for new cursors when there were other ways to do what I needed because I don't have that often now
AstroLightz@lemmy.world · 7 pts · 113d
I'm on team "whatever comes pre-installed"
brax@sh.itjust.works · 7 pts · 113d
Neovim. One time I accidentally opened nano and couldn't figure out how to get out of it... Wtf is with those keybinds?
Lol at emacs not even being on your list. Suck it, emacs users 😂😂❤️
Obin@feddit.org · 11 pts · 113d
Firstly, Emacs is not an alternative to any terminal based text editor, it's an alternative to the terminal based workflow in general.
Secondly, Emacs users can live without the hype, churn and elitism of the vim ecosystem and with a better editor instead.
juipeltje@lemmy.world · 3 pts · 113d
And not just an editor, but an entire environment! I've only been using emacs for a few weeks now, but i'm really enjoying it. I'm not a developer, but i still find magit really awesome to use for my git needs, and atp i've replaced yazi with dired as my keyboard-driven file manager.
azimir@lemmy.ml · 2 pts · 113d
As the old joke goes: Emacs is great if you want to learn another OS.
I'm a barbarian vim user. Whenever I watch a real Emacs user operate a full dev environment inside of Emacs I'm always left stunned. It's a whole universe of functionality, not just a refined line editor like vim.
pucker4676@lemmy.ml · 2 pts · 113d
Shots fired!
prole@lemmy.blahaj.zone · 4 pts · 113d
It literally tells you like 3 ways you exit nano at the bottom
kofzmann@toots.nu · 7 pts · 113d
@SocialistVibes01 Emacs of course
AnthropomorphicCat@lemmy.world · 6 pts · 113d
another vote for Neovim!
HamsterRage@lemmy.ca · 6 pts · 112d
Vi
quantumvoid0@lemmus.org · 1 pts · 112d
VIM FTW
HamsterRage@lemmy.ca · 6 pts · 112d
You young punks. :)
jtrek@startrek.website · 5 pts · 113d
I use nano for quick edits. I don't know more than the basics of vim, and don't do a lot of editing on the terminal so I haven't needed to.
nullify3112@lemmy.world · 5 pts · 112d
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.
Cyber@feddit.uk · 5 pts · 113d
Just
echotext to create a new file or usesedandawkto edit an existing file.In reality, I use
nanofor edits andvimdifffor comparing files (usually a.pacnewafter an update on a headless device)AnnaFrankfurter@lemmy.ml · 4 pts · 113d
Atleast be a neckbeard and use
catthe way neckbeard Gods intended \sjjlinux@lemmy.zip · 5 pts · 112d
Micro, for muscle memory for keyboard shortcuts from when I was a mostly GUI user.
Peasley@lemmy.world · 5 pts · 113d
nano but i'm a casual. i can use vi/vim in a pinch, but i'm inefficient. ed and emacs are totally foreign
i tend to use a graphical text editor like Kate unless there is a specific reason to do it in the terminal
SpaceNoodle@lemmy.world · 3 pts · 113d
nano, and I'm an expert.
graynk@discuss.tchncs.de · 2 pts · 113d
same. I'll use vi if there's nothing else available, but I default to nano if I can
mholiv@lemmy.world · 5 pts · 112d
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.
spacetff@lemmy.ml · 4 pts · 112d
nano, vi, geany, kate...
I prefer nano - simple to use & always available. I manage remote systems often from my mobile using termius: config file editing, writing simple scripts for some analysis/automation tasks and recording task notes and status. Using a tablet I might use vi but generally prefer nano.
9488fcea02a9@sh.itjust.works · 4 pts · 112d
Been using linux full time for 10 years. I do almost all of my system admin stuff in the terminal (my desktop, laptop, home server with a few containers). But i cant for the life of me figure out vim (like i know how, but it just doesnt click for me or feel natural)... i tried a bunch of times and will keep trying... but until then, its (shamefully) nano for me
MrKoyun@lemmy.world · 4 pts · 109d
Nano because like why would I bother with anything else? It's just a quick and dirty text editor.
Malix@sopuli.xyz · 4 pts · 113d
For novelty I do install msedit, because nostalgia is rose tinted. But for realsies it's vim, not because I'm good at using it, but I'm familiar enough.
TheGreenWizard@lemmy.zip · 4 pts · 112d
Nano 4 life
mactan@lemmy.ml · 4 pts · 113d
sed forever
abra_k@lemmy.blahaj.zone · 4 pts · 112d
Helix: Barely needs a config. But they are also pretty close to done with a plug-in system for the stuff that isn't implemented by default :D
Jentu@lemmy.ml · 4 pts · 112d
I have been learning vim specifically because of VimWiki. It’s always fun getting a few words into writing a document before realizing I wasn’t in Insert mode, then I have to figure out what I messed up.
fratermus@piefed.social · 4 pts · 112d
vi, since it's ubiquitous.fum@lemmy.world · 4 pts · 112d
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.
clmbmb@lemmy.dbzer0.com · 4 pts · 113d
Neovim.
ironbeak@lemmy.ca · 4 pts · 113d
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.
sunbeam60@feddit.uk · 4 pts · 112d
My first computer was an Amstrad 664, with a green screen. I’m old. And I’ve been around Vim and EMacs from time to time and I love the console but for the love of god, since GUIs became the normal way to interact with computers, I just install micro now and have the same hotkeys across all the modes of interaction.
Speed of typing really isn’t the defining productivity measure for code.
Now I use VS Code in a GUI and micro on the console and that provides a reasonably consistent way of interacting with text.
GardenData61371@lemmy.world · 4 pts · 112d
Nano. It's the easiest to use
Ithral@lemmy.blahaj.zone · 4 pts · 111d
Micro is pretty nice, has limited mouse support in the TUI line numbers highlighting. That or Neovim customized
CodeAssembler@lemmy.ml · 3 pts · 111d
Mostly Neovim and Nano. Tried out ed in the UNIX4 tape that got recovered, was strange but fun to see where sed, grep and other commands got their name from.
GUI is still good old Sublime Text, but I almost completely switched to terminal based editors, I guess because of the nice work flow.
dizzle8@lemmy.ml · 3 pts · 113d
I typically use nano for the quicker edits but enjoy using vim otherwise.
enshu@lemmy.world · 3 pts · 112d
I used Neovim for a couple of years and then switched to Emacs. I love it.
harsh3466@lemmy.ml · 3 pts · 113d
Team vim! Learned it five or six years ago, and never looked back. I've also got vim motions enabled for my shell, in the browser (firefox with vimium), and in my window manager (sway).
originalucifer@moist.catsweat.com · 3 pts · 113d
suffer.
isnt the whole point we get to use the tools we want?
Nibodhika@lemmy.world · 3 pts · 112d
When I first started using Linux I used Kate, I know, I know, not command line, but I didn't needed a command line editor for my own computer. Eventually I started using nano for quick edits and that became my default CLI editor for a while. I don't remember what I used as an IDE back then, but maybe it was Eclipse, although I think it was mostly just Kate.
Eventually I decided to learn either VI or Emacs, and a friend who used Emacs pushed me to that side. I ended up switching everything to emacs, CLI, IDE, I even learnt org-mode and had tables and presentations in it.
Eventually my pinky started to hurt too much, so I switched to Pycharm for python, and kept emacs for C++, text edits and org-mode. I ended up slowly switching emacs everywhere and reverted to nano.
Some years back I decided to properly learn vim. I have been using nvim for a few years, and while it's not the everything tool that emacs was for me, it's still pretty darn useful. I also haven't become a movement ninja and oftentimes I go
wwwwwwto get where I want to be. But still, there are some very nice shortcuts that I use a lot like Change Inside/Around or Delete X lines. Macros are cool, and sometimes feel magical, but other times they don't work like I expected and I can't figure out why. I don't see myself changing to something else, the ubiquity of vim shortcuts in other programs makes it very convenient when I have to use something else.db2@lemmy.world · 3 pts · 113d
https://github.com/microsoft/edit
SocialistVibes01@lemmy.ml · -4 pts · 113d
Ew
db2@lemmy.world · 1 pts · 113d
Yeah that part is weird.
ChocolateFrostedSugarBombs@lemmy.world · 3 pts · 113d
Nano and I've actually started using Helix which I like a lot. It's keybinds make more sense to me than vim.
smiletolerantly@awful.systems · 3 pts · 113d
Neovim, configured entirely through nixvim. I always liked neovim, but it's never been as incredibly stable as now with nixvim.
Main/only IDE both in private and at work. Can't ever go back, muscle memory has ensured that.
L_Acacia@lemmy.ml · 3 pts · 113d
Vim/neovim if you are willing to take the time to learn how to use / config it.
Micro otherwise, very sensible keybinds and ux that map to modern gui apps, though it doesn't come installed in most distro unlike ed and nano.
embed_me@programming.dev · 2 pts · 113d
Vim barely needs configuration, btw Been wanting to try Neovim but I got overwhelmed when I tried to set it up and the default behaviour is different enough from vim to annoy me back to vim
boredsquirrel@slrpnk.net · 3 pts · 112d
kate textfile &Hadriscus@jlai.lu · 4 pts · 112d
and what ?? don't leave me hanging
boredsquirrel@slrpnk.net · 2 pts · 111d
Profit
(A single & is used to detach the process. Though Qt apps keep logging)
juipeltje@lemmy.world · 3 pts · 113d
If we're talking purely something basic to be able to edit some shit on the system i think i would choose nano, purely because i've used it for years to edit everything (yes, even config files in full programming languages lol) and thus i'm very familiar with it. If we're talking anything terminal-based in general, i like helix as a modal editor. I chose it over neovim at the time because i didn't feel like configuring the whole thing, and helix is pretty much ready to go with lsp and everything ootb. A few weeks ago though i decided to make the switch to emacs, since i use guix now, so it felt like a natural fit. I might check out emacs in the terminal at some point, but i'm sticking with the gui for now.
cravl@slrpnk.net · 3 pts · 112d
Once you configure nano with a
~/.nanorcfile, it becomes a lot more like micro/helix without having to install anything on new systems. I just curl my config and I'm good. I have Ctrl+C, Ctrl+V, 2 space tabs, mouse scrolling +selection, syntax highlighting, etc. There's a lot you can do in there, and that's not to mention plugins.dessalines@lemmy.ml · 2 pts · 111d
Was staunchly team vim for 15 years, but now I'm on helix. As another user stated below, its like if vim were re-designed today, and without needing any addons to be a code-aware editor.
ramius345@sh.itjust.works · 2 pts · 113d
Emacs!
pineapplelover@lemmy.dbzer0.com · 2 pts · 111d
Neovim for terminal but often I use kate for gui because I still don't find vim commands more efficient
verdigris@lemmy.ml · 2 pts · 112d
Team vim, but I've been using Helix instead for a year or two -- it's like if Neovim and Kakoune had a baby.
00xide@lemmy.ml · 2 pts · 111d
neovim through nvf on NixOS. I'm not even a power user, I just had a shit mouse in college and didn't want to use it and now I'm hundreds of lines of Lua too deep to go back. This is my life now.
fozid@feddit.uk · 2 pts · 113d
Nano is the easiest most straightforward to use, and it's what I always use. I have nvim setup and I really believe it is better but I have had 20 years using nano and I really struggle forcing myself to switch and get used to it as it's so completely different.
Alvaro@lemmy.blahaj.zone · 2 pts · 112d
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
mmmm@sopuli.xyz · 2 pts · 113d
Seems I'm alone here on this but I'm team vis
thoralf@discuss.familie-will.at · 2 pts · 113d
VIM Learnt it in my first semester and use it ever since.
osanna@lemmy.vg · 2 pts · 112d
When I ran a trivia bot on irc back in the day, I used to use sed to edit question files. But mostly use nano now. I don’t do anything all day and COULD learn vim/emacs/something else. But I cbf
Obnomus@lemmy.ml · 2 pts · 111d
Kate 👀
sudoer777@lemmy.ml · 2 pts · 112d
Helix + my Nix-based configuration tool
icedaemon0@lemmy.world · 2 pts · 113d
bradboimler@lemmy.world · 2 pts · 112d
Emacs → Vim → Neovim → Helix
geneva_convenience@lemmy.ml · 1 pts · 113d
micro for sure. But I dont use it as a main editor. Just for quick text file adjustments.
lime@feddit.nu · 1 pts · 113d
just learn acme
SystemQ@lemmy.world · 1 pts · 111d
Neovim + LazyVim
mesamunefire@piefed.social · 1 pts · 113d
Ed when i need to get into a server and i have no clue whats running.
Nano when i know whats running and i cant install things.
Vim when i can install things.
At wprk we use vscode wnd jetbrains products but they are omly ok. I still like vim more.
Dirk@lemmy.ml · 1 pts · 113d
A few years ago I'd say Vim but nowadays it's Neovim for me.
quantumvoid0@programming.dev · 1 pts · 111d
vim forever (i think)
davel@lemmy.ml · 1 pts · 113d
I was just now years old when I learned that mg (AKA MicroGnuEmacs) comes with OpenBSD & MacOS.
despaircode@lemmy.ml · 1 pts · 112d
Acme
dreamy@quokk.au · 1 pts · 111d
PetteriPano@lemmy.world · 1 pts · 113d
My first distro shipped with pico, so I often choose nano for an edit. Micro is fine, too, but I won't go out of my way to install it.
I challenged myself to write a couple of projects in neovim over a month or so. I finished my projects, but it still felt like the tool was getting in my way. Muscle memory is to break. Current job requires a bigger IDE, but I still do my commit messages with neovim.
LloydKM@feddit.org · 1 pts · 113d
Have been using vim for the longest time, but I‘m getting into nvim :)
fruitycoder@sh.itjust.works · 1 pts · 111d
Vim unless I can neovim.
Being able to change configs on headless systems was my gateway, now I just prefer it
MonkderVierte@lemmy.zip · 1 pts · 113d
Exporting $EDITOR instead. Also, i don't use sudo; too much for desktop, too insecure for server.
p4rzivalrp2@piefed.social · 1 pts · 111d
Used to use micro but just switched to neovim, I'm finding it great, esp with the file manager built in
eldavi@lemmy.ml · 1 pts · 111d
do you use neovim over vim for any particular reason?
i ask because i'm a vim user and wondering if should update but wondering if the x windows overhead is worth it.
p4rzivalrp2@piefed.social · 2 pts · 111d
I just assumed it was probably better in some way, idk the difference but didn't want to run into smth and need to switch
eldavi@lemmy.ml · 1 pts · 106d
That's where I am. I failed at switching to other things because vim has become muscle memory for me
floofloof@lemmy.ca · 1 pts · 113d
Vim for the most part, and nano for when I'm tired and can't remember how to work vim.
pwxd@lemmy.zip · 1 pts · 112d
StrawberryPigtails@discuss.tchncs.de · 1 pts · 113d
I generally use micro on the terminal, kate or gedit in the GUI, depending. No hate towards the others, just what I've settled on over the years.
ColdWater@lemmy.ca · 1 pts · 113d
I still use nano, I tried micro and it's confusing af to use also it didn't allow konsole context menu to copy anything from it or paste anything from outside even with ctrl+v or ctrl+shift+v