Minor fix

This commit is contained in:
whoami 2025-03-20 20:18:20 +00:00
parent ab1e2abb74
commit 2b8f4faa48
4 changed files with 27 additions and 29 deletions

View file

@ -5,11 +5,6 @@
export FILE_EXPLORER="explorer.exe" # Directory Opus export FILE_EXPLORER="explorer.exe" # Directory Opus
alias clip="clip.exe"
alias clip="clip.exe"
alias paste='pwsh.exe -NoProfile -Command "Get-Clipboard"'
alias dark-mode='pwsh.exe -Command "dark-mode" 2>&1 /dev/null'
alias winfetch='pwsh.exe -NoProfile -Command "winfetch"'
alias psw="tasklist.exe" alias psw="tasklist.exe"
alias killw="taskkill.exe" alias killw="taskkill.exe"
alias shutdownw="shutdown.exe /s /t 0" alias shutdownw="shutdown.exe /s /t 0"

View file

@ -5,31 +5,27 @@ local M = {}
-- Ensure that the following servers are installed and set -- Ensure that the following servers are installed and set
-- Use :Mason to list all available servers -- Use :Mason to list all available servers
M.servers = { M.servers = {
"ast_grep", "bashls", -- Bash
"bashls", -- Bash "clangd", -- C/C++
"clangd", -- C/C++ "cssls", -- CSS
"cssls", -- CSS
"denols", -- Deno
-- "cmake", -- CMake -- "cmake", -- CMake
"eslint", -- JavaScript "eslint", -- JavaScript
"gopls", -- Go "html", -- HTML
"hls", -- Haskell "jsonls", -- JSON
"html", -- HTML "lua_ls", -- Lua
"jsonls", -- JSON
"lua_ls", -- Lua
"markdown_oxide", -- Markdown "markdown_oxide", -- Markdown
"omnisharp", -- C# & F# "omnisharp", -- C# & F#
"powershell_es", -- PowerShell "powershell_es", -- PowerShell
"pyright", -- Python "pyright", -- Python
"rust_analyzer", -- Rust "rust_analyzer", -- Rust
"svelte", -- Svelte "svelte", -- Svelte
"svlangserver", -- SystemVerilog "svlangserver", -- SystemVerilog
"tailwindcss", -- TailwindCSS "tailwindcss", -- TailwindCSS
"taplo", -- TOML "taplo", -- TOML
"ts_ls", -- TypeScript "ts_ls", -- TypeScript
"vimls", -- vimscript "vimls", -- vimscript
"yamlls", -- YAML "yamlls", -- YAML
"beancount", -- Beancount "beancount", -- Beancount
} }
-- Configuration for each server defines here -- Configuration for each server defines here

View file

@ -25,7 +25,7 @@ return {
require("luasnip").config.setup({ enable_autosnippets = true }) require("luasnip").config.setup({ enable_autosnippets = true })
end, end,
}, },
{ "williamboman/mason.nvim", config = true }, { "williamboman/mason.nvim", config = true },
{ {
"williamboman/mason-lspconfig.nvim", "williamboman/mason-lspconfig.nvim",
lazy = false, lazy = false,
@ -106,4 +106,10 @@ return {
}, },
}, },
}, },
{
"nvim-neorg/neorg",
lazy = false, -- Disable lazy loading as some `lazy.nvim` distributions set `lazy = true` by default
version = "*", -- Pin Neorg to the latest stable release
config = true,
}
} }

View file

@ -1,3 +1,4 @@
-- FIXME: Completion not working on GNU/Linux
local function set_keymaps(keymaps_cmp) local function set_keymaps(keymaps_cmp)
local mappings = {} local mappings = {}
for _, map in ipairs(keymaps_cmp) do for _, map in ipairs(keymaps_cmp) do