degen

joined 1 year ago
[–] [email protected] 2 points 3 days ago

I'm still on bemenu since I used dmenu with dwm on X. I should probably check the others out.

[–] [email protected] 7 points 3 days ago

This, logseq, and PKM in general for me. I guess it's not really "can't live without" because I hardly know where to start, but the possibilities for organizing my mess of a brain are enticing.

It would probably help to have a project to work on and actually use the things rather than diving too deep into PKM conceptually... Really wish I knew about them in school, though.

[–] [email protected] 18 points 4 days ago

Midi chlorines is my favorite chiptunes album

[–] [email protected] 3 points 5 days ago (1 children)

Fair enough, but that is OP, my friend

[–] [email protected] 5 points 5 days ago (1 children)

We're basically on the same page here. I'm no professional either, and if it were black and white, there'd be no nuances to discuss. Mental health support is key, and like you said it can be hard to even talk about. It's unfortunately easier to hate than to help.

[–] [email protected] 1 points 5 days ago (3 children)

I agree nobody should be imprisoned for having thoughts. I also don't think accepting something like loli as an outlet is helpful. Emulation of problematic tendencies isn't exactly therapeutic.

[–] [email protected] 4 points 5 days ago (6 children)

Legality aside, insofar as it is philosophically debatable, gross and pedophilic is still gross and pedophilic.

If you know someone is thinking about murdering people around them, but holds off, would that make you feel any safer? I think the focus should be helping people not want that rather than appeasement.

[–] [email protected] 2 points 5 days ago

Wonder where the original fits in. Side-eyeing and backing away out of frame, possibly out of the country, to secure funding for a pivot?

[–] [email protected] 5 points 5 days ago

It's also important to note that a lot of that scarcity is artificial. Sure, we're far from post scarcity, but strife is exacerbated by capitalist systems in all but the most privileged.

[–] [email protected] 19 points 5 days ago

I know covid messed a lot of us up, but I've got some troubling news for you regarding the passage of time...

[–] [email protected] 19 points 5 days ago

Gonna need a meta-analysis to be sure

[–] [email protected] 1 points 5 days ago
 

I'm on NixOS and slowly working through neovim config.

I have treesitter installed with all grammars and it's set up in lua. When I run :TSymbols, it pops open a window showing -----treesitter-----, but no symbols are shown from the (python) code I have open.

All of the setup is put in place by the config flake I'm using, but I don't think there's any additional stuff to add for symbols to work. The treesitter section in the resulting init.lua from nix looks like this:

require('nvim-treesitter.configs').setup({
      ["context_commentstring"] = { ["enable"] = false },
      ["highlight"] = { ["enable"] = true },
      ["incremental_selection"] = {
        ["enable"] = false,
        ["keymaps"] = {
          ["init_selection"] = "gnn",
          ["node_decremental"] = "grm",
          ["node_incremental"] = "grn",
          ["scope_incremental"] = "grc"
        }
      },
      ["indent"] = { ["enable"] = false },
      ["refactor"] = {
        ["highlight_current_scope"] = { ["enable"] = false },
        ["highlight_definitions"] = {
          ["clear_on_cursor_move"] = true,
          ["enable"] = false
        },
        ["navigation"] = {
          ["enable"] = false,
          ["keymaps"] = {
            ["goto_definition"] = "gnd",
            ["goto_next_usage"] = "<a-*>",
            ["goto_previous_usage"] = "<a-#>",
            ["list_definitions"] = "gnD",
            ["list_definitions_toc"] = "gO"
          }
        },
        ["smart_rename"] = {
          ["enable"] = false,
          ["keymaps"] = { ["smart_rename"] = "grr" }
        }
      }
    })
view more: next ›