Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
Christoph J. Scherr | fc3551f2b0 | |
Christoph J. Scherr | e7da25d583 | |
Christoph J. Scherr | ecd5bba3bb |
|
@ -1,23 +0,0 @@
|
|||
local on_attach = require("plugins.configs.lspconfig").on_attach
|
||||
local capabilities = require("plugins.configs.lspconfig").capabilities
|
||||
|
||||
local lspconfig = require "lspconfig"
|
||||
|
||||
-- if you just want default config for the servers then put them in a table
|
||||
local servers = {
|
||||
"html",
|
||||
"cssls",
|
||||
"tsserver",
|
||||
"clangd",
|
||||
"pyright",
|
||||
"rust_analyzer",
|
||||
"bashls",
|
||||
"cmake",
|
||||
}
|
||||
|
||||
for _, lsp in ipairs(servers) do
|
||||
lspconfig[lsp].setup {
|
||||
on_attach = on_attach,
|
||||
capabilities = capabilities,
|
||||
}
|
||||
end
|
|
@ -7,6 +7,7 @@ local plugins = {
|
|||
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
enable = false,
|
||||
config = function()
|
||||
require "plugins.configs.lspconfig"
|
||||
require "custom.configs.lspconfig"
|
||||
|
@ -15,6 +16,7 @@ local plugins = {
|
|||
-- override plugin configs
|
||||
{
|
||||
"williamboman/mason.nvim",
|
||||
enable = false,
|
||||
opts = overrides.mason,
|
||||
},
|
||||
|
||||
|
@ -39,6 +41,7 @@ local plugins = {
|
|||
|
||||
{
|
||||
"stevearc/conform.nvim",
|
||||
enable = false,
|
||||
-- for users those who want auto-save conform + lazyloading!
|
||||
-- event = "BufWritePre"
|
||||
config = function()
|
||||
|
@ -82,6 +85,7 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"folke/which-key.nvim",
|
||||
enable = false,
|
||||
keys = { "<leader>", "<localleader>", "<c-r>", "<c-w>", '"', "'", "`", "c", "v", "g" },
|
||||
defaults = {
|
||||
mode = { "n", "v" },
|
||||
|
@ -99,9 +103,10 @@ local plugins = {
|
|||
["<leader>f"] = { name = "+formatting" },
|
||||
},
|
||||
},
|
||||
{ "echasnovski/mini.trailspace", lazy = false, event = { "BufReadPost", "BufNewFile" }, opts = {} },
|
||||
{ "echasnovski/mini.trailspace", enabled = false, lazy = false, event = { "BufReadPost", "BufNewFile" }, opts = {} },
|
||||
{
|
||||
"itchyny/vim-cursorword",
|
||||
enabled = false,
|
||||
event = "FileType",
|
||||
init = function()
|
||||
vim.g.cursorword = 0
|
||||
|
@ -148,6 +153,7 @@ local plugins = {
|
|||
|
||||
{
|
||||
"RRethy/vim-illuminate",
|
||||
enabled = false,
|
||||
lazy = false,
|
||||
event = { "BufReadPost", "BufNewFile" },
|
||||
opts = {
|
||||
|
@ -196,6 +202,7 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"folke/todo-comments.nvim",
|
||||
enable = false,
|
||||
lazy = false,
|
||||
dependencies = "nvim-telescope/telescope.nvim",
|
||||
-- stylua: ignore
|
||||
|
@ -237,6 +244,7 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"folke/trouble.nvim",
|
||||
enabled = false,
|
||||
cmd = { "Trouble", "TroubleToggle" },
|
||||
opts = { use_diagnostic_signs = true },
|
||||
-- stylua: ignore
|
||||
|
@ -312,7 +320,7 @@ local plugins = {
|
|||
-- lazy.nvim
|
||||
{
|
||||
"folke/noice.nvim",
|
||||
enabled = not vim.g.started_by_firenvim,
|
||||
enabled = false,
|
||||
event = "VeryLazy",
|
||||
-- config.lsp.signature.enabled = false
|
||||
dependencies = {
|
||||
|
@ -359,6 +367,7 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"stevearc/dressing.nvim",
|
||||
enabled = false,
|
||||
init = function()
|
||||
---@diagnostic disable-next-line: duplicate-set-field
|
||||
vim.ui.select = function(...)
|
||||
|
@ -374,6 +383,7 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"chentoast/marks.nvim",
|
||||
enabled = false,
|
||||
lazy = false,
|
||||
dependencies = "lewis6991/gitsigns.nvim",
|
||||
event = "FileType",
|
||||
|
@ -384,6 +394,7 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"kevinhwang91/nvim-bqf",
|
||||
enabled = false,
|
||||
ft = "qf",
|
||||
cmd = "BqfAutoToggle",
|
||||
event = "QuickFixCmdPost",
|
||||
|
@ -427,6 +438,7 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"uga-rosa/ccc.nvim",
|
||||
enabled = false,
|
||||
lazy = false,
|
||||
event = "FileType",
|
||||
keys = {
|
||||
|
@ -442,10 +454,12 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"Bekaboo/deadcolumn.nvim",
|
||||
enabled = false,
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
},
|
||||
{
|
||||
"rmagatti/goto-preview",
|
||||
enabled = false,
|
||||
event = "FileType",
|
||||
config = function()
|
||||
require("core.utils").load_mappings "goto_preview"
|
||||
|
@ -461,6 +475,7 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"glacambre/firenvim",
|
||||
enabled = false,
|
||||
lazy = not vim.g.started_by_firenvim,
|
||||
build = function()
|
||||
vim.fn["firenvim#install"](0)
|
||||
|
@ -479,6 +494,7 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"sidebar-nvim/sidebar.nvim",
|
||||
enabled = false,
|
||||
cmd = { "SidebarNvimToggle", "SidebarNvimOpen" },
|
||||
config = function()
|
||||
require("sidebar-nvim").setup {
|
||||
|
@ -498,6 +514,7 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"kevinhwang91/nvim-ufo",
|
||||
enabled = false,
|
||||
event = { "BufReadPost", "BufNewFile" },
|
||||
-- stylua: ignore
|
||||
keys = {
|
||||
|
@ -560,6 +577,7 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"nvimtools/none-ls.nvim",
|
||||
enabled = false,
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
opts = function(_, opts)
|
||||
opts.sources = {}
|
||||
|
@ -591,6 +609,7 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"lvimuser/lsp-inlayhints.nvim",
|
||||
enabled = false,
|
||||
event = "LspAttach",
|
||||
opts = {
|
||||
inlay_hints = {
|
||||
|
@ -620,9 +639,11 @@ local plugins = {
|
|||
vim.cmd "hi LspInlayHint guibg=bg guifg=#804d66"
|
||||
end,
|
||||
},
|
||||
{ "kosayoda/nvim-lightbulb", event = { "BufReadPre", "BufNewFile" } },
|
||||
{ "kosayoda/nvim-lightbulb", enabled = false,
|
||||
event = { "BufReadPre", "BufNewFile" } },
|
||||
{
|
||||
"Wansmer/treesj",
|
||||
enabled = false,
|
||||
cmd = { "TSJJoin", "TSJSplit", "TSJSplit" },
|
||||
keys = {
|
||||
{ "<C-s-j>", "<cmd>TSJJoin<CR>" },
|
||||
|
@ -634,6 +655,7 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"b0o/incline.nvim",
|
||||
enabled = false,
|
||||
event = "FileType",
|
||||
config = function()
|
||||
local function get_diagnostic_label(props)
|
||||
|
@ -687,7 +709,7 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"mikesmithgh/kitty-scrollback.nvim",
|
||||
enabled = true,
|
||||
enabled = false,
|
||||
lazy = true,
|
||||
cmd = { "KittyScrollbackGenerateKittens", "KittyScrollbackCheckHealth" },
|
||||
event = { "User KittyScrollbackLaunch" },
|
||||
|
@ -703,10 +725,11 @@ local plugins = {
|
|||
},
|
||||
{
|
||||
"hrsh7th/nvim-cmp",
|
||||
enabled = not vim.g.started_by_firenvim,
|
||||
enabled = false,
|
||||
},
|
||||
{
|
||||
"ziontee113/icon-picker.nvim",
|
||||
enabled = false,
|
||||
keys = {
|
||||
{ "<C-I>", "<cmd>IconPickerNormal<CR>", desc = "pick icon" },
|
||||
{ "y<C-I>", "<cmd>IconPickerYank<CR>", desc = "yank icon" },
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,263 +0,0 @@
|
|||
#ifferent
|
||||
Linter
|
||||
Neorg
|
||||
DevOps
|
||||
NewTec
|
||||
Mergetools
|
||||
Quellrepository
|
||||
gemerged
|
||||
mergen
|
||||
a
|
||||
ccl
|
||||
NTSG
|
||||
a
|
||||
Jira
|
||||
ReqEng
|
||||
cscherr
|
||||
MD5
|
||||
Hashchecker
|
||||
Testvectors
|
||||
#ossibilites
|
||||
possibilites/!
|
||||
Hexdumper
|
||||
hexdumped
|
||||
Atlassian
|
||||
Initialkosten
|
||||
Hexeditor
|
||||
hexeditor
|
||||
Hexdumping
|
||||
stdin
|
||||
md
|
||||
regex101
|
||||
#nglish
|
||||
Manspider
|
||||
Manspiders
|
||||
subrace
|
||||
subraces
|
||||
swiftstride
|
||||
beasthide
|
||||
Eldeen
|
||||
Khorvaire
|
||||
drider
|
||||
spiderful
|
||||
spiderfew
|
||||
Spiderfolk
|
||||
Shrelluka
|
||||
find/!
|
||||
find
|
||||
Magnam
|
||||
arachna
|
||||
matrem
|
||||
namegen
|
||||
Zessas
|
||||
Webbington
|
||||
Razu
|
||||
Rhellu
|
||||
cantrip
|
||||
d12
|
||||
d4
|
||||
th
|
||||
unnoteworthy
|
||||
Qroczhreer
|
||||
Blokhof
|
||||
Hauck
|
||||
spiderous
|
||||
zlib
|
||||
experimentelle
|
||||
SHA
|
||||
Etablierungs
|
||||
the
|
||||
strikethrough
|
||||
RustBook
|
||||
IEC62443
|
||||
DHBW
|
||||
gelinked
|
||||
openssl
|
||||
Yocto
|
||||
gls
|
||||
ECC
|
||||
Kryptosystem
|
||||
github
|
||||
sfackler
|
||||
mathmatics
|
||||
www
|
||||
sagemath
|
||||
PlexSheep
|
||||
plexcryptool
|
||||
ECDSA
|
||||
EdDSA
|
||||
Stringverarbeitung
|
||||
#onblocking
|
||||
OOP
|
||||
Fifo
|
||||
serde
|
||||
Deserialisierung
|
||||
serde
|
||||
Skripte
|
||||
mathmatics
|
||||
bbc
|
||||
Kryptographischen/!
|
||||
PyO3
|
||||
#yo3
|
||||
JSON
|
||||
json
|
||||
#yo3
|
||||
Verifikationsmechanismus
|
||||
projektinterne
|
||||
Theoriephase
|
||||
weise/!
|
||||
Weise
|
||||
merksam
|
||||
Syscall
|
||||
Enum
|
||||
deu
|
||||
JS
|
||||
JS
|
||||
getElementById
|
||||
MDN
|
||||
WebDocs
|
||||
src
|
||||
txt
|
||||
ERRNO
|
||||
vvvv
|
||||
Rustonomicon
|
||||
Rustdoc
|
||||
paragraph
|
||||
rustc
|
||||
Klabnik
|
||||
io
|
||||
rustbook
|
||||
Deserialize
|
||||
deserialisierbaren
|
||||
SIGTERM
|
||||
Beendigungsabfrage
|
||||
SIGKILL
|
||||
stdout
|
||||
stderr
|
||||
Leveln
|
||||
gedroppt
|
||||
#ekonstruktor
|
||||
Dekonstruktor/!
|
||||
dealloziiert
|
||||
Dealloziierung
|
||||
Dealloziieren
|
||||
vvvv
|
||||
TODO
|
||||
vvvv
|
||||
Structs
|
||||
nomicon
|
||||
Wrapperklasse
|
||||
tx
|
||||
rx
|
||||
struct
|
||||
enum
|
||||
priorisierbar
|
||||
仕方がない
|
||||
Gleichzeitigkeitsmechanismen
|
||||
ServiceWrapper
|
||||
Repräsentierung
|
||||
Docstrings
|
||||
Backends
|
||||
dirs
|
||||
MessageFrame
|
||||
Addressor
|
||||
init
|
||||
Spektralgestalt
|
||||
CTS
|
||||
Addressor
|
||||
Timestamp
|
||||
str
|
||||
BASEDIRECTORY
|
||||
configs
|
||||
fifo
|
||||
PKI
|
||||
secp384r1
|
||||
Addressors
|
||||
Keystore
|
||||
Fifos
|
||||
SBC
|
||||
NTSecureCloudSolutions
|
||||
newtec
|
||||
loesungen
|
||||
subfigure
|
||||
Shield96
|
||||
ATSAMA5D27
|
||||
TrustZone
|
||||
A5
|
||||
ARMv7
|
||||
eMMC
|
||||
MT25QU0512BBB
|
||||
ATECC608
|
||||
Rückwärtskompatibilität
|
||||
tls
|
||||
opcua
|
||||
texttt
|
||||
rfcp
|
||||
ssl
|
||||
Lifecycle
|
||||
v0
|
||||
pyi
|
||||
bietete
|
||||
desc
|
||||
Scherr
|
||||
mariadb
|
||||
Gawa
|
||||
Django
|
||||
opensource
|
||||
Shader
|
||||
shader
|
||||
GLFW
|
||||
shaders
|
||||
GLSL
|
||||
cpp
|
||||
clangd
|
||||
Hashtypen
|
||||
Ver
|
||||
vshot
|
||||
oopsc
|
||||
antlr
|
||||
wir's
|
||||
Naja
|
||||
Vlam
|
||||
UNE
|
||||
Electionary
|
||||
UNE's
|
||||
recuse
|
||||
hacky
|
||||
config
|
||||
Yubi
|
||||
submodules
|
||||
Curve25519
|
||||
gpg
|
||||
devops
|
||||
lazygit
|
||||
IDEs
|
||||
hypervisors
|
||||
QEMU
|
||||
virt
|
||||
filetypes
|
||||
Parth
|
||||
Narula
|
||||
wordpress
|
||||
PlexSheep's
|
||||
nvchad
|
||||
IDK
|
||||
lazyloading
|
||||
nv
|
||||
ftplugins
|
||||
stylua
|
||||
nvim
|
||||
lsp
|
||||
builtins
|
||||
cmdline
|
||||
popupmenu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#m
|
||||
ufo
|
||||
treesitter
|
||||
gehostet
|
Binary file not shown.
Loading…
Reference in New Issue