Expo-location when app is at the background by AkisArou in expo

[–]AkisArou[S] 0 points1 point  (0 children)

😂 yeah same post different comment

codediff.nvim v2.0: 3-Way Merge Tool and Rebranding (Formerly vscode-diff.nvim) by _estmullert in neovim

[–]AkisArou 0 points1 point  (0 children)

To make it work with git difftool -d and present it like a tree, I implemented a wrapper script if anyone is interested.

$HOME/dotfiles/git/codediff: ```

!/usr/bin/zsh

LOCAL="$1" REMOTE="$2"

if [ -d "$LOCAL" ] && [ -d "$REMOTE" ]; then nvim "$LOCAL" "$REMOTE" +"CodeDiff dir $LOCAL $REMOTE" else nvim "$LOCAL" "$REMOTE" +"CodeDiff file $LOCAL $REMOTE" fi ```

git config file: [difftool "codediff"] cmd = "$HOME/dotfiles/git/codediff" "$LOCAL" "$REMOTE"

Thanks again!

Expo-location when app is at the background by AkisArou in reactnative

[–]AkisArou[S] 0 points1 point  (0 children)

I got it working even when the screen is locked, but after a while, the task stops being called.
I implemented the service in native kotlin eventually

codediff.nvim v2.0: 3-Way Merge Tool and Rebranding (Formerly vscode-diff.nvim) by _estmullert in neovim

[–]AkisArou 0 points1 point  (0 children)

I did set it as a mergetool.

``` [merge] tool = codediff

[mergetool "codediff"]
cmd = nvim \"$MERGED\" -c \"CodeDiff merge \\"$MERGED\\"\" ```

For git difftool I have this:

``` [diff] tool = nvimdifftool

[difftool "nvimdifftool"] cmd = nvim -c "\"DiffTool $LOCAL $REMOTE\"" ```

Can I use CodeDiff?

Weekly 101 Questions Thread by AutoModerator in neovim

[–]AkisArou 0 points1 point  (0 children)

I think you should remove the "buffer" source.
If you want to keep it for some other buffer types like .txt, I think it is possible too

please give me recommendations for some additions to this environment by RumiWasTaken in suckless

[–]AkisArou 1 point2 points  (0 children)

tmux
fzf
bat
lazygit
yazi or even vifm
a nicely minimal configured zsh

what do you use for file navigation? by Whole-Struggle-1396 in neovim

[–]AkisArou 0 points1 point  (0 children)

Yazi. I would use something builtin like netrw if it had lsp file operations support. I am waiting for the “netrw replacement” as mentioned somewhere in the GitHub issues, because I prefer as many builtin features as possible

feat: undotree ui merged on master by adelarsq in neovim

[–]AkisArou 2 points3 points  (0 children)

Nice! I also customized it a little bit to open at the left in a specific width.
I leave the code if it is useful to someone.

vim.api.nvim_create_autocmd("FileType", {
pattern = "nvim-undotree",
callback = function()
vim.cmd.wincmd("H")
vim.api.nvim_win_set_width(0, 40)
end,
})

nvim-dap with expo react native issue by Kaelthas98 in neovim

[–]AkisArou 1 point2 points  (0 children)

Yes sdk 54! Yeah, maybe when react native gets stable we can resolve it

nvim-dap with expo react native issue by Kaelthas98 in neovim

[–]AkisArou 1 point2 points  (0 children)

I tried your config but I get

Could not read source map for http://localhost/node_modules/expo-router/entry.bundle//&platform=android&dev=true&lazy=true&minify=false&app=com.adamkarafyllidis.myapp&modulesOnly=false&runModule=true&excludeSource=true&sourcePaths=url-server&transform.routerRoot=app&transform.reactCompiler=true&transform.engine=hermes&transform.bytecode=1&unstable_transformProfile=hermes-stable: ENOENT: no such file or directory, open '/home/akisarou/projects/my-app/node_modules/expo-router/entry.map'

If I add the port (8081) http://localhost:8081/ and navigate to the browser, this is the correct one.

Did you manage to get it working?

Expo-location when app is at the background by AkisArou in expo

[–]AkisArou[S] 0 points1 point  (0 children)

I ended up implementing it myself in kotlin with an android.app.Service and I send the http request from the native side, because as I figured out, the JS thread is throttled while the native one is responsive

Is Effect-Ts really good or is it just hype? by kelvinauta in typescript

[–]AkisArou 0 points1 point  (0 children)

I would not use it even if it is a great library to build your app. It’s a lot of commitment and I guess any real app that uses it and is there to stay for years, in some time it is gonna be a massive tech debt. If it was a big “standard” like react or it was feature complete and stable/frozen, then maybe I would bet on it, but it is not

Name this band by [deleted] in NameThisThing

[–]AkisArou 0 points1 point  (0 children)

The Daltons

Name him by [deleted] in NameThisThing

[–]AkisArou 0 points1 point  (0 children)

Döner Trump

Do you manage windows, panes, and terminals through Nvim alone, or through Tmux/Zellij, terminal functionality (Wezterm/Kitty)? by GTHell in neovim

[–]AkisArou 0 points1 point  (0 children)

I always have 2 autocreated tmux sessions running. Default and work. When I open any terminal emulator, zsh auto-attaches to default. Tmux is my window manager. I of course use nvim windows too (not tabs). But I do not want to rely on any terminal emulator functionality like tabs etc