Alper Cugun
Alper Cugun
I think the TOML table format makes more sense here probably: ```toml [username] aliases = { fschlegelone = "f.one", guest = "g", root = "🥕"} ``` What do you think?
I have a working draft here: https://github.com/alper/starship/tree/add-username-alias-setting
My PR should now be good to go.
I think right now things are working as expected? I can imagine the use case of having one prompt_format override another one could be something that's desirable in more situations...
Can we leave behind the confusing overgrowth of javascript packaging tools? You want to be able to say: in the `bun` module that if it's on, it should override the...
You can add a negative match to your `nodejs` module config: ``` [nodejs] detect_files = ['package.json', '.node-version', '!bun.lockb'] ``` I think it may be a bit much to add that...
Documentation addition in: #5834
I mean the `Model` has: `attributes = db.Column(db.JSON())` Can I make this work without changing that part? Update: I got it to work by changing it into: `attributes = sqlalchemy.Column(sqlalchemy_jsonfield.JSONField(enforce_string=True))`...
I couldn't figure out how to not have it work on issues so I set the issue days to 999. That should probably work long enough for my purposes.
Mine just stopped working so I quickly fixed it by changing all occurrences in asana.php to: `exec('curl -H "Authorization: Bearer' . $apikey . '" https://app.asana.com/api/1.0/users/me', $return);` And filling in the...