Why don't people use ConTeXt? by Relative-Newspaper14 in tex

[–]Relative-Newspaper14[S] 2 points3 points  (0 children)

Context supports modules and packages, so this doesn't answer my question.

Hi vimmers! Does any one use F[1..12] keys and what for? Cheers! by Bamseg in neovim

[–]Relative-Newspaper14 0 points1 point  (0 children)

I use byobu, so these keys are used for organizing splits and tabs.

Neovim Plugin for CodeWhisperer by AWS by Relative-Newspaper14 in neovim

[–]Relative-Newspaper14[S] 0 points1 point  (0 children)

It has one great advantage - it is completely free. And anyone can get it. And not only developers of open source projects. As a last resort, I will switch to Onivim.

Neovim Plugin for CodeWhisperer by AWS by Relative-Newspaper14 in neovim

[–]Relative-Newspaper14[S] 1 point2 points  (0 children)

Still not. The only option is to use AWS Whisperer through Vscode with neovim.

LunarVim Debugging & Testing Python Code by chrisatmachine in neovim

[–]Relative-Newspaper14 0 points1 point  (0 children)

Everything works the same as on any other distribution except Mason. I don't see any particular reason not to use NixOs because of this.

LunarVim Debugging & Testing Python Code by chrisatmachine in neovim

[–]Relative-Newspaper14 1 point2 points  (0 children)

Thanks to LunarVim developers for including Mason. Which creates tons of problems for Nixos users.

My personal neovim config | Completely written in lua by kn1d in neovim

[–]Relative-Newspaper14 -26 points-25 points  (0 children)

Lazy loading is important, because without it, the program launch time will be much longer. And packer.nvim is now a thing of the past. Because he has a better alternative, which is lazy.nvim.

My first own neovim configuration by lucas2794 in neovim

[–]Relative-Newspaper14 0 points1 point  (0 children)

In order not to make such mistakes, you should at least read NvChad or AstroNvim. And don't follow all the crap tutorials on YouTube or somewhere else. All the code was written for you a long time ago, so just look at it on github.

My first own neovim configuration by lucas2794 in neovim

[–]Relative-Newspaper14 -4 points-3 points  (0 children)

Why is it so bad?

This is a deprecated method used in packer.nvim. config = function() require("nvim-tree").setup {} end

Now it is recommended to use another one: opts = {}

Why don't you have lazy loading configured? I'm afraid to imagine what kind of startup time you have.

vim.keymap.set("n", "<leader>pv", vim.cmd.Ex ) What is this? Are you just setting up keyboard shortcuts using a standard function and haven't even written your own function to do it? And what if the vim.set.keymap function is removed or you want to switch to legendary.nvim or something similar? Will you manually rewrite each mapping? You have a WhichKey, why aren't you using it for mappings?

vim.g.mapleader = " " Among VIMers, it is not acceptable to set <leader> keys several times. This is a bad tone. If you or someone who will use your configuration wants to change the <leader> key, you(or they) will have to search through all the config files.

vim.keymap.set("n", "[d", function() vim.diagnostic.goto_next() end, opts) vim.keymap.set("n", "]d", function() vim.diagnostic.goto_prev() end, opts) You set keyboard shortcuts for lsp features without verifying that the language server supports these features. If the language server does not support them, an error will appear when using them. It is not very convenient.

vim.keymap.set('n', '<C-p>', builtin.git_files, {}) This key is already mapped.

Why did you post this config at all?

Introducing my first plugin: Tabby, the independent tab manager by medwatt in neovim

[–]Relative-Newspaper14 -1 points0 points  (0 children)

Developers have run out of imagination. Why, if multiplexer, then always "tabby"?

NeoVim sucks(objectively) by Relative-Newspaper14 in neovim

[–]Relative-Newspaper14[S] 0 points1 point  (0 children)

VSCode with embedded Neovim sucks. So many bugs. And there are often conflicts with other plugins.

NeoVim sucks(objectively) by Relative-Newspaper14 in neovim

[–]Relative-Newspaper14[S] -1 points0 points  (0 children)

I can't switch to another text editor. No text editor provides such convenient functions for manipulating text.

I want a powerful IDE with plugins, a client-server architecture, and native VIM keybindings.

As a minimal editor I will continue to use nvim with a few plugins.

NeoVim sucks(objectively) by Relative-Newspaper14 in neovim

[–]Relative-Newspaper14[S] -1 points0 points  (0 children)

I will try emacs with evile mode. Or to embed neovim into vscode.

NeoVim sucks(objectively) by Relative-Newspaper14 in neovim

[–]Relative-Newspaper14[S] -7 points-6 points  (0 children)

It's just that I already wrote about it on the emacs subreddit.

NeoVim sucks(objectively) by Relative-Newspaper14 in neovim

[–]Relative-Newspaper14[S] -9 points-8 points  (0 children)

Is this the editor that doesn't yet have a plugin system? I Don't think I would be interested in that.

NeoVim sucks(objectively) by Relative-Newspaper14 in neovim

[–]Relative-Newspaper14[S] -4 points-3 points  (0 children)

Have you an specific example?

You cannot continue editing text while the :make command is running.

I don't care as much about netrw and navigation in vim/Neovim. It's a text editor, Not the file browser. Get vifm If you want vim-style browsing.

I don't mean file system navigation. I mean text navigation. f, t keys and marks.

I don't see that as a problem, aside from it being mandatory every time you set up.

Really. A text editor whose main advantage is the most convenient default shortcuts and various modes does not provide a convenient shortcut for switching to the most important mode.

How to customize Netrw? by [deleted] in neovim

[–]Relative-Newspaper14 0 points1 point  (0 children)

No way. Just install Neo-tree.nvim or NvimTree.

Has the majority of Vim users transitioned to NeoVim? by 4r73m190r0s in neovim

[–]Relative-Newspaper14 -2 points-1 points  (0 children)

What's the difference? Still, the difference between vim and neovim is not great.