voidq.xyz is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.

This server runs the snac software and there is no automatic sign-up process.

Admin account
@hey@voidq.xyz

Search results for tag #nvim

[?]Denis » 🌐
@dlants@hachyderm.io

Been seeing this "just fucking use neovim" thing floating around, and I gotta say this is a great illustration of the issue I have of a big chunk of the community. It's juvenile and off-putting. I value vulnerability and displays of genuine emotion. I love nvim, it's really fun to nerd out about. I'd rather invite people to participate.

    [?]mintbug » 🌐
    @mintbug@mastodon.ml

    нужно собрать в кучу подходы к созданию протокола взаимодействия между средой написания кода, реализацией языка, оценивающей код, и средством отображения результатов оценки. Второй элемент зачастую не виден пользователю, а первый и третий совмещены в одном интерфейсе.
    - repl, включающие в себя велосипед редактора — [это отстой](mastodon.ml/@mintbug/117116628)
    - продвинутые repl используют не stdin/stdout, а сетевые сокеты
    - nrepl.org
    - nrepl.org/nrepl/beyond_clojure
    - ~ github.com/Olical/conjure/wiki
    - ? doc.guix.gnu.org/guile/latest/
    - ? janet-lang.org/spork/api/netre
    - [jupyter](mastodon.ml/@mintbug/117011302)
    - ( ) нужно плагины для nvim таки посмотреть
    - обмен структурированными данными через json в nushell
    - ( ) nushell.sh/contributor-book/pl
    - ( ) nushell.sh/contributor-book/pl

      [?]mintbug » 🌐
      @mintbug@mastodon.ml

      @serr @dside при чём тут бредогенераторы, не понятно, речь о детерминированных инструментах шла, хватит с соломенными чучелами бороться.

      Да, линейный редактор в оболочке не нужен, и я хотел бы от него избавиться. Чтобы запускать исключительно nvim, а в нём не встроенный терминал (`:te`), а специальный буфер, в котором будет предусмотрена возможность исполнять строки кода.

      Возможно, стоит в github.com/Olical/conjure дополнительно кеймап в insert-режиме на enter повесить, предусмотреть возможность запускать repl без привязки к файлу на диске и прикрутить поддержку bash/fish.

      Ещё какие-то проклятые плагины на vimscript видел, но не пробовал. Общая идея в том, что нужно избежать взаимодействия с велосипедом редактора от оболочки или другого repl, используя для написания команд исключительно свой основной текстовый редактор.

        [?]mintbug » 🌐
        @mintbug@mastodon.ml

        внезапно, чтобы все ссылки на б-гомерзкий pinterest из чата в deltachat скормить gallery-dl, было достаточно жмать ctrl-a для выделения всего текста в чате, вставить его в nvim, найти ссылки (`/https:\/\/pin`), создать пустой буфер (`<c-w>n<c-w>L`) и использовать макрос `nD<c-w><c-w>po<esc><c-w><c-w>`. А мог бы сейчас сидеть и думать, как в нормальном структурированном виде чат экспортировать.

        Макросы — кристальное, они позволяют вам делать вещи тупым, ручным способом, но при этом автоматически повторяя действия. Иногда в красивых решениях, выраженных через логику в скрипте, действительно нет необходимости.

          [?]Bertrand CLAVELIER » 🌐
          @bertrand@social.clavelier.me

          Exercices quotidiens sur nvim. Aujourd'hui : les modifications.

          Je repasse en revue toutes les commandes du chapitre : i a I A o O pour
          l'insertion, les opérateurs d, c et y, leur version ligne entière dd, cc,
          yy, les majuscules D, C et Y, le collage p et P, les corrections d'un
          caractère x, s et r, l'indentation >> << == gg=G, l'incrémentation avec
          Ctrl-a et Ctrl-x, et la répétition avec le point.

          Du connu pour l'essentiel. Mais deux choses qui vont bien m'aider.

          J, qui joint la ligne suivante à la ligne courante.

          La seconde, c'est une question de portée. Je savais qu'un opérateur se
          combine à un déplacement : dw supprime jusqu'au mot suivant, d$ jusqu'à la
          fin de la ligne, dG jusqu'à la fin du fichier, d} jusqu'au paragraphe
          suivant. Ce que je n'avais pas mesuré, c'est jusqu'où ça va. f, t et /
          sont des déplacements comme les autres, donc des cibles comme les autres.

          df; supprime jusqu'au point-virgule, celui-ci compris. dt; s'arrête juste
          avant. d/erreur supprime jusqu'à la prochaine occurrence du mot "erreur".

          J'utilise f, t et / tous les jours pour me déplacer et pour chercher. Il ne
          m'était jamais venu à l'esprit de m'en servir comme cible d'une
          suppression, d'un changement ou d'une copie. La même touche sert deux fois.

          Je progresse 😅

          #nvim #vim

            [?]mintbug » 🌐
            @mintbug@mastodon.ml

            притащил из typst в редактор правильный покрас ссылок — фиолетовый без подчёркивания и курсива. Курсив нужно выборочно кастовать для семантики, подчёркивание вообще ненужно. Зочем кастовать всё, что только можно? Няшного цвета вполне достаточно.

            ```lua
-- ~/.config/nvim/lua/extra/catppuccin.lua
return {
  custom_highlights = function(colors)
    return {
      ["@markup.link.url"] = { fg = colors.mauve, style = {} },
    }
  end,
}
```

            Alt...```lua -- ~/.config/nvim/lua/extra/catppuccin.lua return { custom_highlights = function(colors) return { ["@markup.link.url"] = { fg = colors.mauve, style = {} }, } end, } ```

            до

            Alt...до

            после

            Alt...после

              [?]mintbug » 🌐
              @mintbug@mastodon.ml

              Таки нахуя нужен jupyter, когда есть [обычный repl](mastodon.ml/@mintbug/116498644), и как наиболее гламурно вычислять куски fennel в заметках на typst?

                [?]Paco Velobs » 🌐
                @PacoVelobs@mamot.fr

                Oyez Oyez !

                Vimistes, NeoVimistes, voir même Vistes ou EVistes ? Emacsists, Nanoïstes, Edistes...

                À , le mardi 27 octobre à 19h à se tiendra un évènement de renom : un tuppervim.org/ !

                Ne préparez rien, venez avec un truc à qui miam ou qui glou et pointez vous au bon endroit openstreetmap.org/node/2782756 à la bonne heure.

                  [?]Paco Velobs » 🌐
                  @PacoVelobs@mamot.fr

                  I've been using daily for personal and professional reasons for almost two decades now.
                  Yesterday, I "sharpened the saw".

                  Of course, I know more about the tools than 15 years ago. But I find beauty in the fact that I still learn valuable ways to enhance my workflow a couple of times a year.

                  It's not about discovering a new thing.
                  But about finding a way to better use it.
                  I like to be better than my last week self.

                    [?]Paco Velobs » 🌐
                    @PacoVelobs@mamot.fr

                    @slothrop

                    Not sure whether you want to tell a story or are looking for an actual solution here.

                    But reading the doc about the various registers and work with might help you a lot.

                    ```
                    :help registers<CR>
                    ```

                      [?]Michael » 🌐
                      @schmic@hessen.social

                      @mariusor That's why I stick with too 😜

                        [?]Nikhil 🐧 » 🌐
                        @realestninja@social.linux.pizza

                        Does anyone have a nice and fancy vim/nvim setup for working with .astro files? 🤔

                          [?]mintbug » 🌐
                          @mintbug@mastodon.ml

                          github.com/jeanguyomarch/eovim

                          пробовать мне влом, но выглядит прикольно :D

                            [?]Paco Velobs » 🌐
                            @PacoVelobs@mamot.fr

                            So, I gave a try.

                            I'm used to work with but I have to admin the devenv.nix file is less cluttered which lead to a better UX. But this comes at the cost of an extra devenv.yaml file. Why not, not a fan, but it works.

                            But, while configs are composable locally, they can't import a remote config as does.

                            Also, `devenv shell` breaks my / setup where my works like a charm.
                            So, yeah, I'll keep my for now.
                            At work and at home.

                            CC @Ilygad

                              [?]𝙳𝚢𝚕𝚊𝚗 » 🌐
                              @closingtags@mastodon.social

                              I use Vim BTW

                              I've been a Vim user for quite some time now and I love it. But I got tired of my own highly customized configuration breaking whenever a plugin or Neovim updated. I switched to a managed configuration and haven't looked back. Just because I can do things, doesn't mean I should.

                              closingtags.com/blog/astronvim

                                [?]R.L. Dane :Debian: :FreeBSD: :OpenBSD: :NetBSD:🍵 :MiraLovesYou: [he/him/my good fellow] » 🌐
                                @rl_dane@polymaths.social

                                C'mon #vim folk, REPRESENT!!

                                @hyde

                                #vi #nvi #neovim #nvim

                                  [?]Paco Velobs » 🌐
                                  @PacoVelobs@mamot.fr

                                  Yeah, my first real use of `:w ++opt`.

                                    0 ★ 0 ↺

                                    [?]/home$:blinkingcursor: [he/him] » 🌐
                                    @hey@voidq.xyz

                                    // users how you suggest to use these beautiful text editor on my/another server as a text editor, configuring config files, reading md, html, css file etc...
                                    Should I install plug-ins or keepit minimalist?

                                    Any suggestions will be helpful;)

                                      0 ★ 0 ↺

                                      [?]/home$:blinkingcursor: [he/him] » 🌐
                                      @hey@voidq.xyz

                                      @gausby@mastodon.xyz for terminal based editor // the winners, perfectly fits on tmux runs faster and minimal lags on config editing on server:)
                                      have terminal based version but it's better on gui.

                                        Back to top - More...