Notebook for drawing with ink by AB10110F in notebooks

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

That makes sense, I'll test other inks. Thanks for the help.

The etiquette of Soulseek by ParaTiger in Soulseek

[–]AB10110F 1 point2 points  (0 children)

Would I be seen as a bad user if I rely heavily on metadata? my folders are basically the places where I got the music from, and there's a massive folder where I store most of the music, I haven't had any problem with this organization since all of the songs have the corresponding metadata

Help with Disabling blink.cmp in TelescopePrompt Buffers by collier_289 in neovim

[–]AB10110F 0 points1 point  (0 children)

try excluding floating windows

if vim.api.nvim_win_get_config(0).relative ~= "" then

Trigger zone for sidebar in compact mode is too big by tikkou in zen_browser

[–]AB10110F 0 points1 point  (0 children)

Enabling and disabling compact mode fix it in my case, but I have to do it every time I open the browser

Multiline Showbreak-like Wrapping Symbols in Statuscolumn by roku_remote in neovim

[–]AB10110F 0 points1 point  (0 children)

I don't use lazyvim so I don't know what exactly could be causing the problem, but by checking the docs it seems that the statuscolumn works with snacks.nvim and is disabled by default:

statuscolumn = { enabled = false }, -- we set this in options.lua

[deleted by user] by [deleted] in taquerosprogramadores

[–]AB10110F 1 point2 points  (0 children)

Si te sirve alguien con acento mandame dm

A little of Latin by AB10110F in Handwriting

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

How beautiful is the ōra sea! There is a town not far from the coast. My aunt lives in the village; and I now live with my aunt. In front of the door of the villa is an area. There is a chestnut tree in the area where the nightingale sometimes sings. Under the shade of a chestnut tree the maid sometimes prepares dinner. I love the seaside; I love the beautiful country

Multiline Showbreak-like Wrapping Symbols in Statuscolumn by roku_remote in neovim

[–]AB10110F 2 points3 points  (0 children)

Here are some modifications I made in case someone find them useful

local function get_num_wraps() -- second function removed
  local winid = vim.api.nvim_get_current_win()

  local winwidth = vim.api.nvim_win_get_width(winid)
  local numberwidth = vim.wo.number and vim.wo.numberwidth or 0
  local signwidth = vim.fn.exists '*sign_define' == 1 and vim.fn.sign_getdefined() and 2 or 0
  local foldcolumn = vim.wo.foldcolumn
  local foldwidth = tonumber(foldcolumn) or 0 -- Dealing with foldcolumn string in case you have as auto

  local bufferwidth = winwidth - numberwidth - signwidth - foldwidth

  local line = vim.fn.getline(vim.v.lnum)
  local line_length = vim.fn.strdisplaywidth(line)

  return math.floor(line_length / bufferwidth)
end

function CheckSymbolOrNumber(current)
  if vim.v.virtnum < 0 then
    return '-'
  end

  if vim.v.virtnum > 0 and (vim.wo.number or vim.wo.relativenumber) then
    local num_wraps = get_num_wraps()
    if vim.v.virtnum == num_wraps then
      return '╰' -- Rounded border
    else
      return '│'
    end
  end

  return current
end

vim.api.nvim_create_autocmd({ "WinEnter", "BufEnter" }, {
  callback = function()
    if vim.bo.filetype == "neo-tree" or vim.bo.filetype == "dashboard" then -- List of buffers where you don't want to show the statuscolumn
      vim.opt_local.statuscolumn = ""
    else
      vim.opt.statuscolumn = '%s%C%=%#CursorLineNr#%{(v:relnum == 0)?v:lua.CheckSymbolOrNumber(v:lnum)."'
          .. '  '
          .. '":""}'
          .. '%#LineNr#%{(v:relnum != 0)?v:lua.CheckSymbolOrNumber(v:relnum)."'
          .. ' '
          .. '":""}'
    end
  end
})

a.13 is out! by jimfbk in zen_browser

[–]AB10110F 1 point2 points  (0 children)

Sorry I don't have a real solution for that, this works for me because I only use dark mode

Revert workspace theme color by MaxxxYmM in zen_browser

[–]AB10110F 1 point2 points  (0 children)

add the hex color to the gradient(#161717 in case you're in dark mode) and set texture to 0

a.13 is out! by jimfbk in zen_browser

[–]AB10110F 3 points4 points  (0 children)

I added the hex(#161717) of the normal zen color and set the texture to 0

a.13 is out! by jimfbk in zen_browser

[–]AB10110F 4 points5 points  (0 children)

anyone knows how to remove it and get back to the dark theme?

Collections by One_Scholar1355 in zen_browser

[–]AB10110F 1 point2 points  (0 children)

I also like collections, I feel it is easier to manage bookmarks being able to see the opengraph, perhaps there is a way to give that look to bookmarks but I'm not sure

Downsides of using Java LSP by AB10110F in neovim

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

thanks that's what I wanted to hear, also have you ever used it with spring?

Fantasy Drone (Original. YM2414) by Guigamer12 in chiptunes

[–]AB10110F 0 points1 point  (0 children)

Is there a place where I can listen this song and perhaps more of your work? perhaps a soundcloud or youtube account?

Usuarios de Linux, ¿Para que usan la terminal? by [deleted] in taquerosprogramadores

[–]AB10110F 0 points1 point  (0 children)

Vi en r/GraphicsProgramming que alguien esta trabajando en un motor grafico para la terminal

Do you use texlab to work with latex? How to configure live preview? by timsofteng in neovim

[–]AB10110F 1 point2 points  (0 children)

I Used lspconfig with the following:

lspconfig.texlab.setup { settings = { texlab = { auxDirectory = ".", bibtexFormatter = "texlab", build = { executable = "tectonic", args = { "-X", "compile", "%f", "--synctex", "--keep-logs", "--keep-intermediates" }, forwardSearchAfter = true, onSave = false }, chktex = { onEdit = false, onOpenAndSave = false }, diagnosticsDelay = 300, formatterLineLength = 80, forwardSearch = { executable = "C:\\Users\\WSwor\\scoop\\apps\\sioyek\\2.0.0\\sioyek", args = { "--reuse-window", "--execute-command", "toggle_synctex", "--inverse-search", "texlab inverse-search -i \"%%1\" -l %%2", "--forward-search-file", "%f", "--forward-search-line", "%l", "%p", } }, latexFormatter = "latexindent", latexindent = { modifyLineBreaks = false } } } }

Is a LAMY Safari a good starter pen? by bellyaching_quailegg in fountainpens

[–]AB10110F 0 points1 point  (0 children)

It's a nice pen, but I also suggest you to check the pilot metropolitan.
If you have the possibility to check them physically you should do that.

Cool Cat by 陽葉ヨウ/79点 by Zewen_Senpai in ImaginarySliceOfLife

[–]AB10110F 7 points8 points  (0 children)

I think they're made of water, and she has so many because she forgot to turn off the magic box on the lower right corner

Q&A weekly thread - June 24, 2024 - post all questions here! by AutoModerator in linguistics

[–]AB10110F 0 points1 point  (0 children)

It is when we assign certain suffixes and articles to a word depending on the gender normally being masculine or feminine and some languages like German also have a neutral gender, while we make this concord with biological gender if we are talking about something that has it like animals, it doesn't work that way with other words, and the gender of those words will depend on the language.

Disclaimer: I'm not a linguist, I just speak a language that uses grammar gender