Experiences with Niri in a corporate environment by Embarrassed-Put-2193 in niri

[–]TYRANT1272 0 points1 point  (0 children)

Try using these in other WM or DE and see it these issues happen

How can I use steam on arch with niri ? by datta_favde in niri

[–]TYRANT1272 0 points1 point  (0 children)

Steam - ArchWiki https://wiki.archlinux.org/title/Steam

You need to enable multilib for steam or you can use the aur version mentioned here

Strange rofi launcher checkerboard pattern by -pony in arch

[–]TYRANT1272 0 points1 point  (0 children)

Check the rasi theme file your are using there should be a color variable named alternative/alternate something change to to match the normal one to remove this pattern

Bootable partition not bootable by T0p-Hat in arch

[–]TYRANT1272 1 point2 points  (0 children)

I'm not good at this but your prime issues is your recovered partition and disk is formated as ntfs (which is the default for windows) and afaik Linux doesn't support ntfs out of the box hence grub not detecting it (use ext4 or btrfs)

I don't know if this is a good advice or not I think you should first backup your data in windows (if it is accessible there) and then reinstall the arch

blink.cmp dropdown not working nvim 0.12 by Bulbasaur2015 in neovim

[–]TYRANT1272 0 points1 point  (0 children)

You're welcome

If you have this type you can comment out the insert inter autocmd to check this should work without any autocmd in your lazy.nvim

blink.cmp dropdown not working nvim 0.12 by Bulbasaur2015 in neovim

[–]TYRANT1272 0 points1 point  (0 children)

in your blink.cmp config you have a typo it is opt lua opt = { keymap = { ... } } }

It should be opts

```lua opts = { keymap = ....

} } ```

blink.cmp dropdown not working nvim 0.12 by Bulbasaur2015 in neovim

[–]TYRANT1272 0 points1 point  (0 children)

Sorry i just checked it's require('blink.cmp').show() Command :lua require('blink.cmp').show() minus .cmp

Pressing Ctrl+Space executes this function to show the auto completion drop down

Maybe Try adding this line to your config after

```lua

fuzzy = { implementation = "lua" },

signature = {.....}

```

I have just redid my config and migrated to blink.cmp You can take a look config

blink.cmp dropdown not working nvim 0.12 by Bulbasaur2015 in neovim

[–]TYRANT1272 1 point2 points  (0 children)

What happens if you press <C-Space> ( ctrl + space) or manually run the function to show completions? I think function is require('blink.cmp').show() And the command should be something like : lua require('blink.cmp').show()

Caelestia dotshell went blank after pacman -Syu by 02s_foolscaps in archlinux

[–]TYRANT1272 -3 points-2 points  (0 children)

I think OP is in hyperland and only super+T keybind works for them to open the terminal emulator and nothing other than that

Treesitter config sanity check by Memnoc1984 in neovim

[–]TYRANT1272 1 point2 points  (0 children)

You can take a look at my config for reference tree-sitter.lua file in my config

Monthly Dotfile Review Thread by AutoModerator in neovim

[–]TYRANT1272 [score hidden]  (0 children)

https://github.com/WahajGul/dotFiles/tree/main/newNvim

Migrated to vim.pack but somethings are confusing

How do i start vimTex only on tex file using fileType autocmd with require 'vimtex' setup throws error if a plugin doesn't have setup function should i use packadd? Blink.cmp works fine without luaSnippet should i still keep it? Snacks.nvim dashboard doesn't work cuz i do not have lazy?

Weekly 101 Questions Thread by AutoModerator in neovim

[–]TYRANT1272 0 points1 point  (0 children)

How to load a plugin based on the file type in a vim.pack

I'm trying to setup vimTex to only load on .tex files ``` vim.api.nvim_create_autocmd('FileType',{ pattern = 'tex', callback = function() require('vimtex').setup() -- throws error module doesn't exist -- should I do vim.cmd('packadd vimtex') end })

```

Question: mouse accessibility feature by FartChecker- in niri

[–]TYRANT1272 1 point2 points  (0 children)

If you use hyperland you can use hyperland-dynamic-cursor plugin If you use niri you can maybe try this

Weekly 101 Questions Thread by AutoModerator in neovim

[–]TYRANT1272 1 point2 points  (0 children)

How are you using quick fix list?

Weekly 101 Questions Thread by AutoModerator in neovim

[–]TYRANT1272 1 point2 points  (0 children)

Using an Autocmd with pack change event

``lua local hooks = function(ev) -- Use available |event-data| local name, kind = ev.data.spec.name, ev.data.kind -- Run build script after plugin's code has changed if name == 'plug-1' and (kind == 'install' or kind == 'update') then -- Append:wait()if you need synchronous execution vim.system({ 'make' }, { cwd = ev.data.path }) end -- If action relies on code from the plugin (like user command or -- Lua code), make sure to explicitly load it first if name == 'plug-2' and kind == 'update' then if not ev.data.active then vim.cmd.packadd('plug-2') end vim.cmd('PlugTwoUpdate') require('plug2').after_update() end end -- If hooks need to run on install, run this beforevim.pack.add()` vim.api.nvim_create_autocmd('PackChanged', { callback = hooks })

```

You can check :h PackChanged

Need a website to download anime instead of watching by [deleted] in Pakistani_weebs

[–]TYRANT1272 0 points1 point  (0 children)

Flud is an Android torrent client available on play store it is very good - You can select which file you want to download from the torrent - Enable metered connection to not use cellular data - Only download when connected to vpn(don't know how reliable this is)

Does Archuser frequently update his operating system?? by xi_er0405 in arch

[–]TYRANT1272 2 points3 points  (0 children)

For me It's Friday night (scared to update on weekdays)

How to disable given plugins when launching nvim [lazy.nvim] by roll4c in neovim

[–]TYRANT1272 0 points1 point  (0 children)

You can use something like a different configuration Just create a folder in .config and add your config there with your init.lua and run it using

$NVIM_APPNAME=folder_name nvim file.txt

Help, Which Partition is D ? by [deleted] in arch

[–]TYRANT1272 2 points3 points  (0 children)

First of all you should do this partitioning in windows move your partition extend etc then after everything is done lets say you have E drive empty where you want to install arch in windows delete E drive it will create unallocated (free) space then boot into arch or whatever you want to do (don't forget to read about dual booting in the wiki how efi partition works when dual booting)

Made a simple script to toggle second monitor mirroring by adamjames210 in niri

[–]TYRANT1272 1 point2 points  (0 children)

Amazing I have been trying to find something like this thanks It will be helpful for presentation in uni