This guide shows how to configure your local network to reach WSL2's virtual adapter network
- Inside your WSL instance run:
ip a show eth0 | grep inet
{"name":"myprofile","settings":"{\"settings\":\"{\\r\\n\\t\\\"window.zoomLevel\\\": 0.5,\\r\\n\\t\\\"editor.fontFamily\\\": \\\"FiraCode NF Retina, Consolas, 'Courier New', monospace\\\",\\r\\n\\t\\\"editor.lineNumbers\\\": \\\"relative\\\",\\r\\n\\t\\\"editor.cursorSurroundingLines\\\": 8,\\r\\n\\t\\\"editor.stickyScroll.enabled\\\": true,\\r\\n\\t\\\"workbench.sideBar.location\\\": \\\"right\\\",\\r\\n\\t\\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\r\\n\\t\\\"workbench.colorTheme\\\": \\\"GitHub Dark\\\",\\r\\n\\t\\\"workbench.editor.showTabs\\\": false,\\r\\n\\t\\\"telemetry.telemetryLevel\\\": \\\"off\\\",\\r\\n\\t\\\"vim.useSystemClipboard\\\": true,\\r\\n\\t\\\"vim.highlightedyank.enable\\\": true,\\r\\n\\t\\\"vim.handleKeys\\\": { \\\"<C-d>\\\": true, \\\"<C-k>\\\": false, \\\"<C-b>\\\": false },\\r\\n\\t\\\"vim.visualModeKeyBindings\\\": [\\r\\n\\t\\t{ \\\"before\\\": [\\\">\\\"], \\\"commands\\\": [\\\"editor.action.indentLines\\\"], \\\"silent\\\": true},\\r\\n\\t\\t{ \\\"before\\\": [ |
set-option -sg escape-time 10 | |
set-option -g focus-event on | |
set-option -g mouse on | |
set-option -g mode-keys vi | |
set-option -g status-style bg=default | |
set-option -g default-terminal 'screen-256color' | |
set-option -sa terminal-overrides ',*:RGB' |
--[[ | |
THESE ARE EXAMPLE CONFIGS FEEL FREE TO CHANGE TO WHATEVER YOU WANT | |
`lvim` is the global options object | |
]] | |
vim.opt.guifont = { "FiraCode NF Retina", ":h14" } | |
require 'nvim-treesitter.install'.compilers = { "zig", "clang", "gcc" } | |
-- Enable powershell as your default shell | |
vim.opt.shell = "pwsh.exe -NoLogo" |
{ | |
"workbench.startupEditor": "none", | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.fontFamily": "'FiraCode NF Retina', Consolas, 'Courier New', monospace", | |
"editor.tabSize": 2, | |
"editor.fontSize": 16, | |
"editor.fontLigatures": true, | |
"editor.lineNumbers": "relative", |
Hello, I'm a Debian user and I installed the Kdenlive on my machine but there is not dark theme option | |
because of the Gnome DE, so to fix this, simply run the following command on your terminal | |
sudo apt install kde-style-breeze | |
it will install kde-style-breeze libkf5style5 (208 kB) | |
start kdenlive go to Settings > Themes > Breeze Dark | |
enjoy your Dark Kdenlive. |