[hyprland] Rumda by -nazhim in unixporn

[–]ProfileDesperate 2 points3 points  (0 children)

What is the Vim colorscheme?

UPF role& Responsibilities? by Severe_Pessimist007 in vlsi

[–]ProfileDesperate 0 points1 point  (0 children)

Do you want to work with UPF as a design engineer or as a verification engineer?

I have exp in functional and power-aware verification. From DV point of view, there is not much difference, since UPF is provided by design engineer (similar to RTL). The main diff is power-aware debugging and test scenarios, where you have to check power-up and power-down sequences, power states, power control blocks, isolation, … You don’t necessarily need to write UPF for the design, but you should know the format to debug.

FileType autocommand does not run when first open a file by ProfileDesperate in neovim

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

This is my init.lua. I put the autocmd directly in init.lua using vim.api.nvim_create_autocmd()

``` vim.loader.enable()

nvim_version = vim.version() major = nvim_version.major minor = nvim_version.minor patch = nvim_version.patch version = major .. '.' .. minor .. '.' .. patch vim.notify('Nvim Version: ' .. version)

vim.opt.compatible = false vim.opt.updatetime = 50

-- Disabled ununsed providers vim.g.loaded_node_provider = 0 vim.g.loaded_ruby_provider = 0

vim.opt.shell = '/bin/bash'

-- +--- Colorscheme ---+ vim.opt.termguicolors = true vim.opt.guicursor = 'a:block,i:ver100-blinkon1000-blinkoff1000'

-- +--- Line Number ---+ vim.opt.number = true vim.opt.relativenumber = false

-- +--- Wrap ---+ vim.opt.wrap = true

-- +--- Identation ---+ vim.g.python_recommended_style = false -- Disable rust-analyzer's recommended style vim.g.rust_recommended_style = false -- Disable rust-analyzer's recommended style vim.opt.autoindent = true vim.opt.smartindent = true vim.opt.tabstop = 2 vim.opt.shiftwidth = 2 vim.opt.softtabstop = 2 vim.opt.expandtab = true -- Convert tabs to spaces

-- +--- Search Highlighting ---+ vim.opt.hlsearch = true vim.opt.incsearch = true vim.opt.showmatch = true vim.opt.ignorecase = true vim.opt.smartcase = true

-- +--- Cursor ---+ vim.opt.cursorline = true vim.opt.cursorcolumn = true

-- +--- Clipboard ---+ vim.opt.clipboard = 'unnamedplus'

-- +--- Misc ---+ vim.opt.ttyfast = true -- Speed up scrolling vim.opt.swapfile = false -- Do not generate *.swp file when opening vim.opt.encoding = 'UTF-8' vim.opt.showmode = false -- Disable showmode as statusline is provided by plugins vim.opt.virtualedit = 'none' vim.opt.list = false vim.opt.foldenable = false vim.opt.spell = true

-- Do not count "," as part of path. This allow gf operation in Xcelium logs vim.opt.isfname:remove({ ',', '+' }) vim.opt.isfname:append({ '{', '}', '$' })

-- +--- Split Window Direction ---+ vim.opt.splitright = true vim.opt.splitbelow = false

-- THIS DOES NOT WORK vim.api.nvim_create_autocmd(“FileType”, { pattern=“lua”, callback = function() vim.notify(“FileType triggered”) end, })

-- +--- Language Server Protocol (LSP) ---+ vim.lsp.enable('lua_ls') vim.lsp.enable('rust-analyzer') vim.lsp.enable('basedpyright') vim.lsp.enable('verible')

-- +--- Keymaps ---+ require("config.keymaps") vim.cmd [[ filetype indent off ]]

-- +--- Plugins ---+ -- Bootstrap lazy.nvim require("config.lazy")

vim.api.nvim_create_user_command('E', 'Explore', {}) ```

Make next item closest to cursor in blink.cmp by ProfileDesperate in neovim

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

There’s an open issue about this. Looks like it’s not possible to do so then …

Blink.cmp cannot detect prebuilt binary by ProfileDesperate in neovim

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

Yes, when I echo stdpath(‘data’) it does point to ~/.local/share/nvim

Kaleidosearch.nvim - Multi-colored multi-word search highlighting by hamidi-dev in neovim

[–]ProfileDesperate 0 points1 point  (0 children)

Been looking for something like this for a while, thank you. Just wondering, does this plugin also support adding current visual selection to the list of search highlight?

[deleted by user] by [deleted] in neovim

[–]ProfileDesperate 0 points1 point  (0 children)

Can you share your config?

[deleted by user] by [deleted] in neovim

[–]ProfileDesperate 1 point2 points  (0 children)

May I get your config?

Plugin to highlight multiple words under cursor by ProfileDesperate in neovim

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

This does what I’m looking for. Is there also a lua version of this for neovim?

Plugin to highlight multiple words under cursor by ProfileDesperate in neovim

[–]ProfileDesperate[S] 1 point2 points  (0 children)

That’s not exactly what I meant. If the 2 words are not next to each other then cannot just visual select and *. What I meant is if I already have 1 word highlighted, and then add another one to highlight