Looking for a note-taking app, preferably that I could use straight from a browser. I’m currently using Standard Notes. Not sure if that one is any good, but E2EE and open-source which at least checks those boxes. I don’t store anything too sensitive and I don’t need a whole bunch of features, though I suppose I’d use them if they were available.

I’m honestly not too picky but maybe discussion here could help someone else out who may be looking for the same thing with higher expectations? I’ll switch over to a better option if there’s something considerably better.

Thanks in advance

  • zonsopkomst
    link
    fedilink
    arrow-up
    1
    ·
    10 months ago

    I’ve attempted to use emacs with orgmode, but have no programming background. I wanted to go for a vanilla emacs experience that I can add modules to, but have hit a wall. My dream is to replace Vscodium which I use for markdown notes with syncthing and also to manage my NixOS git config files (magit?). It’s probably just time and research, but I wish I could simplify the process a bit. I always seem to destroy the documents I’m attempting to work in and get lost in the emac buffers. Just ranting to see if anyone has any tips or suggestions.

    • Euphoma
      link
      fedilink
      English
      arrow-up
      2
      ·
      10 months ago

      I created my emacs config by going through the awesome-emacs github page and adding any packages that looked useful. If you can’t find your buffers, you should do m-x ibuffer and then hit s m to sort buffers by mode, and then you can see all the buffers that are open. Centaur tabs mode is also nice because it adds tabs.

      Adding packages using use-package makes it easier to remember what stuff you added and makes your config more portable. I just got used to emacs by using it with the default keybinds and a minimal amount of packages to understand how it works.

      Alternatively if you know how to use vim, theres an apparently pretty good org mode package for it.

      • zonsopkomst
        link
        fedilink
        arrow-up
        1
        ·
        10 months ago

        Nice, thanks. I will defintely check out the awesome-emacs github. How do you search for functions and keybindings within emacs? I’ve heard it documents everything under the sun, but can’t recall where I read that.

        I had used use-package which I agree is easier, but I think there is an issue either with my OS or more likely me, organizing the config.el in NixOS using org-mode to create sections as it works in the normal config files, but does not work in the org-mode style files with #+BEGIN_SRC #+END_SRC sections.

        • Euphoma
          link
          fedilink
          English
          arrow-up
          1
          ·
          edit-2
          10 months ago

          I’m on NixOS also but I’m not using org-mode for my config, so idk how to help with that. If you do c-h ? you can see all of the help commands, like c-h m for your current keybinds, c-h v for variables, etc. It says just the key you have to do after doing c-h. Also if you use the which-key package, there’s a minibuffer that shows ways to complete a command after doing something like c-x in a list of what command happens after you do each possible key after it. Oh yeah I’m using vertico mode which shows all the functions when I hit m-x and is kinda like autocompletion in an ide except for m-x.

          • zonsopkomst
            link
            fedilink
            arrow-up
            1
            ·
            9 months ago

            Just wanted to post a quick thank you as this info has really helped me get to a usable / learning state with emacs! Will keep playing and practicing until it becomes second nature.

            • Euphoma
              link
              fedilink
              English
              arrow-up
              1
              ·
              9 months ago

              That’s great! If you need any help in the future, I’m always open.

          • zonsopkomst
            link
            fedilink
            arrow-up
            1
            ·
            10 months ago

            Thanks again- this is really useful. Navigation and getting the muscle memory is the hardest thing for me right now. I think I will use these commands and try to practice a little each day until I become more comfortable using emacs full time.