diff --git a/configs/noctalia/settings.json b/configs/noctalia/settings.json index 6126713..527d3a2 100644 --- a/configs/noctalia/settings.json +++ b/configs/noctalia/settings.json @@ -655,7 +655,7 @@ "sortOrder": "name", "transitionDuration": 1500, "transitionEdgeSmoothness": 0.05, - "transitionType": "random", + "transitionType": "fade", "useSolidColor": false, "useWallhaven": false, "viewMode": "recursive", diff --git a/configs/nvim/lua/aleidk/options.lua b/configs/nvim/lua/aleidk/options.lua index d3fb9be..1e6f430 100644 --- a/configs/nvim/lua/aleidk/options.lua +++ b/configs/nvim/lua/aleidk/options.lua @@ -17,45 +17,45 @@ end) -- vim.o.exrc = true -- vim.opt.list = true -- Sets how neovim will display certain whitespace characters in the editor. -- vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' } -opt.autowrite = true -- Enable auto write -opt.breakindent = true -- Every wrapped line will continue visually indented +opt.autowrite = true -- Enable auto write +opt.breakindent = true -- Every wrapped line will continue visually indented opt.completeopt = "menu,menuone,noselect" -opt.conceallevel = 2 -- Hide * markup for bold and italic -opt.confirm = true -- Confirm to save changes before exiting modified buffer -opt.cursorline = true -- Enable highlighting of the current line -opt.expandtab = true -- Use spaces instead of tabs +opt.conceallevel = 2 -- Hide * markup for bold and italic +opt.confirm = true -- Confirm to save changes before exiting modified buffer +opt.cursorline = true -- Enable highlighting of the current line +opt.expandtab = true -- Use spaces instead of tabs opt.formatoptions = "jcroqlnt" -- tcqj opt.grepformat = "%f:%l:%c:%m" opt.grepprg = "rg --vimgrep" -opt.ignorecase = true -- Ignore case +opt.ignorecase = true -- Ignore case opt.inccommand = "split" -- Preview substitutions live, as you type! -opt.mouse = "a" -- Enable mouse mode +opt.mouse = "a" -- Enable mouse mode opt.nrformats = "blank,bin,hex" -opt.number = true -- Print line number -opt.pumblend = 10 -- Popup blend -opt.pumheight = 10 -- Maximum number of entries in a popup +opt.number = true -- Print line number +opt.pumblend = 10 -- Popup blend +opt.pumheight = 10 -- Maximum number of entries in a popup -- opt.relativenumber = true -- Relative line numbers -opt.scrolloff = 15 -- Lines of context -opt.sidescrolloff = 25 -- Columns of context +opt.scrolloff = 15 -- Lines of context +opt.sidescrolloff = 25 -- Columns of context opt.sessionoptions = { "buffers", "curdir", "tabpages", "winsize" } -opt.shiftround = true -- Round indent -opt.shiftwidth = 2 -- Size of an indent -opt.showmode = false -- Don't show mode since we have a statusline -opt.sidescrolloff = 8 -- Columns of context -opt.signcolumn = "yes" -- Always show the signcolumn, otherwise it would shift the text each time -opt.smartcase = true -- Don't ignore case with capitals -opt.smartindent = true -- Insert indents automatically +opt.shiftround = true -- Round indent +opt.shiftwidth = 2 -- Size of an indent +opt.showmode = false -- Don't show mode since we have a statusline +opt.sidescrolloff = 8 -- Columns of context +opt.signcolumn = "yes" -- Always show the signcolumn, otherwise it would shift the text each time +opt.smartcase = true -- Don't ignore case with capitals +opt.smartindent = true -- Insert indents automatically opt.spelllang = { "en" } -opt.splitbelow = true -- Put new windows below current -opt.splitright = true -- Put new windows right of current -opt.tabstop = 2 -- Number of spaces tabs count for +opt.splitbelow = true -- Put new windows below current +opt.splitright = true -- Put new windows right of current +opt.tabstop = 2 -- Number of spaces tabs count for opt.termguicolors = true -- True color support opt.undofile = true opt.undolevels = 10000 -opt.updatetime = 200 -- Save swap file and trigger CursorHold +opt.updatetime = 200 -- Save swap file and trigger CursorHold opt.wildmode = "longest,list:full" -- Command-line completion mode -opt.winminwidth = 5 -- Minimum window width -opt.wrap = false -- Disable line wrap +opt.winminwidth = 5 -- Minimum window width +opt.wrap = false -- Disable line wrap vim.o.completeopt = "noselect,menu,menuone,noinsert,popup" vim.o.winborder = "rounded" @@ -171,7 +171,7 @@ vim.g.markdown_fenced_languages = { "ts=typescript", } -vim.lsp.enable("denols") +-- vim.lsp.enable("denols") vim.lsp.enable("phpactor") vim.lsp.inlay_hint.enable(true) diff --git a/configs/zed/settings.json b/configs/zed/settings.json index e227f04..ef69953 100644 --- a/configs/zed/settings.json +++ b/configs/zed/settings.json @@ -137,7 +137,7 @@ "formatter": "language_server" }, "JavaScript": { - "language_servers": ["biome"], + "language_servers": ["vtsls", "biome"], "formatter": "language_server", "code_actions_on_format": { "source.fixAll.biome": true, @@ -146,7 +146,7 @@ } }, "TypeScript": { - "language_servers": ["biome"], + "language_servers": ["vtsls", "biome"], "formatter": "language_server", "code_actions_on_format": { "source.fixAll.biome": true,