whats your config for e-macs?

what’s your config for e-macs?

  1. 3 weeks ago
    Anonymous

    I don't use emacs because I enjoy the company of adult women. I can, however, share my settings.json for VS Code.

    • 3 weeks ago
      Anonymous

      yo mods wtf??? This nagger doesn’t even have emacs

    • 3 weeks ago
      Anonymous

      if you don't use neovim vim or emacs you are just retarded

      • 3 weeks ago
        Anonymous

        Vim, neovim, and emacs all have garbage keybindings.

    • 3 weeks ago
      Anonymous

      >what’s your config for e-macs?
      vscode.

      Emacs is obsolete, use VSCode.

      >VSoγcode
      http://xahlee.info/emacs/misc/emacs_vs_vscode_memory.html

      • 3 weeks ago
        Anonymous

        >wha?
        it's literally chrome, what the fuck do you midwits expect.

      • 3 weeks ago
        Anonymous

        thats actually much better than i would have guessed. 32gb of ram is like 50 bucks. if you legitimately cannot afford that and can prove it to me ill buy it for you

  2. 3 weeks ago
    Anonymous

    >what’s your config for e-macs?
    vscode.

  3. 3 weeks ago
    Anonymous

    Emacs is obsolete, use VSCode.

    • 3 weeks ago
      Anonymous

      >what’s your config for e-macs?
      vscode.

      Jesus Christ it’s homosexual hour

      • 3 weeks ago
        Anonymous

        hahaha seethe
        at least you could post someting that isnt the equivalent of rubbing your dick for fire
        sublime or atom or anything
        why not vim while were at it?

  4. 3 weeks ago
    Anonymous

    I use Doom Emacs, with very few configuration tweaks

  5. 3 weeks ago
    Anonymous

    opening new tabs and layering open windows in vscode blows. i get heart palpitations when i see colleagues who have 18 windows open and click through them to find the right one, and then scroll for an eternity in the sidebar to find open a new file that they then need to make tiny to fit on screen.

    emacs is snappy af and the defaults for organzing your work in buffers, windows, and workspaces is just a better habit to get in.

  6. 3 weeks ago
    Anonymous

    i use linux

    • 3 weeks ago
      Anonymous

      same
      nice text editor

      • 3 weeks ago
        Anonymous

        ed is the standard editor

        • 3 weeks ago
          Anonymous

          ed is bloat

          • 3 weeks ago
            Anonymous

            well then i'm pretty sure kernel shell has cat to satisfy all of your text editing needs

    • 3 weeks ago
      Anonymous

      Linux-libre is more free

  7. 3 weeks ago
    Anonymous

    Emacs users act like they have been shot in the head

  8. 3 weeks ago
    Anonymous

    4 lines of vimrc

  9. 3 weeks ago
    Anonymous

    I use vanilla emac, this is my .emacs and the extent of my config:
    (custom-set-variables
    ;; custom-set-variables was added by Custom.
    ;; If you edit it by hand, you could mess it up, so be careful.
    ;; Your init file should contain only one such instance.
    ;; If there is more than one, they won't work right.
    '(custom-enabled-themes '(misterioso))
    '(package-selected-packages
    '(geiser-chibi glsl-mode cider geiser-chicken company-pollen pollen-mode smartparens rainbow-delimiters markdown-mode neotree racket-mode))
    '(warning-suppress-log-types '((comp*~~)
    (custom-set-faces
    ;; custom-set-faces was added by Custom.
    ;; If you edit it by hand, you could mess it up, so be careful.
    ;; Your init file should contain only one such instance.
    ;; If there is more than one, they won't work right.
    )

    (setq inhibit-startup-screen t)

    (set-frame-font "IBM Plex Mono 10" nil t)

    (add-to-list 'package-archives
    '("melpa" . "http://melpa.org/packages/"))

    (add-to-list 'load-path "/some/path/neotree")
    (require 'neotree)
    (setq neo-theme 'arrow)
    (global-set-key [f8] 'neotree-toggle)
    (neotree-toggle)

    (windmove-default-keybindings)
    (setq windmove-wrap-around t)

    (require 'rainbow-delimiters)
    (add-hook 'prog-mode-hook 'rainbow-delimiters-mode)

    (require 'smartparens-config)
    (add-hook 'prog-mode-hook #'smartparens-mode)

    (add-hook 'prog-mode-hook 'display-line-numbers-mode)

    (fset 'yes-or-no-p 'y-or-n-p)

    ;; Zone Mode
    (require 'zone)
    (zone-when-idle 120)

    • 3 weeks ago
      Anonymous

      What's zone mode?

      • 3 weeks ago
        Anonymous

        https://www.emacswiki.org/emacs/ZoneMode
        funny little screensaver thing

        • 3 weeks ago
          Anonymous

          Neat, I've never seen that before.

  10. 3 weeks ago
    Anonymous

    I have a locked down work machine that allows SSH. Could I work on various microservice projects on there via doom emacs from my personal box?

    • 3 weeks ago
      Anonymous

      Yeah, when you find file just set the path to
      /ssh:user@server:/path

      • 3 weeks ago
        Anonymous

        Thanks. Am I able to map an emacs project workspace to the project directory on that machine like I can do locally as well? (Not on machine atm.)

        • 3 weeks ago
          Anonymous

          I think you might be able to but no idea, I'm not that deep into SSH myself

    • 3 weeks ago
      Anonymous

      yeah, use TRAMP. it's a little clunky but it just werks as long as ssh is setup on the same machine

  11. 3 weeks ago
    Anonymous

    about 7k loc counting packages I have written

  12. 3 weeks ago
    Anonymous

    >Eglot
    >God-Mode
    >Expand Region
    >Avy
    >Magit

  13. 3 weeks ago
    Anonymous

    all I have installed is god mode

  14. 3 weeks ago
    Anonymous

    Do I need to know scheme to use emacs effectively?

    • 3 weeks ago
      Anonymous

      why would you possibly think that

      • 3 weeks ago
        Anonymous

        So a ``No.''. Thanks.

      • 3 weeks ago
        Anonymous

        Thank you again.

        no.
        elisp =/= scheme, but you don't need either to use the editor.

        Thank you very much.

    • 3 weeks ago
      Anonymous

      no.
      elisp =/= scheme, but you don't need either to use the editor.

      • 3 weeks ago
        Anonymous

        >you don't need either to use the editor
        you definitely have to use some basic elisp to make your own config, which you should because pure vanilla emacs isn't that great
        admittedly though, you don't need to be proficient in the whole language to make a good config

        • 3 weeks ago
          Anonymous

          About the extent of elisp knowledge you need for config is to know that (function value value) is how you make function calls, instead of the standard function(value, value).
          Hell, even without that, you can almost certainly get away with just copying snippets in from the emacs wiki and never learning lisp in the slightest.

  15. 3 weeks ago
    Anonymous

    i still don't know what emacs is

    • 3 weeks ago
      Anonymous

      what are some good mangos that capture the feeling of this image?

      • 3 weeks ago
        Anonymous

        Alphonso, Ambika, and Chausa are all good options, especially eaten while a smug anime girl is laughing at you

  16. 3 weeks ago
    Anonymous

Your email address will not be published. Required fields are marked *