diff --git a/buildfiles/newtabber/links.json b/buildfiles/newtabber/links.json index babaf55..b0df6d6 100644 --- a/buildfiles/newtabber/links.json +++ b/buildfiles/newtabber/links.json @@ -3,7 +3,7 @@ { "title": "Tildes", "url": "https://tildes.net/", "icon": "chat-dots" }, { "title": "RSS", "url": "https://rss.sitosis.com/", "icon": "rss" }, { "title": "Reddit", "url": "https://r.rdsm.ca/", "icon": "reddit" }, - { "title": "Rudism Social", "url": "https://social.rudism.com/", "icon": "mastodon" }, + { "title": "Ooh!Directory", "url": "https://ooh.directory/updated/", "icon": "bookmarks"}, { "title": "Email", "url": "https://app.fastmail.com/", "icon": "envelope" }, { "title": "Notes", "url": "https://notes.sitosis.com", "icon": "journal-text" }, { "title": "Read", "url": "https://read.sitosis.com/", "icon": "book" }, @@ -16,6 +16,5 @@ { "title": "Nebula", "url": "https://nebula.app/myshows", "icon": "film" }, { "title": "Invidious", "url": "https://yt.rdsm.ca/feed/subscriptions", "icon": "youtube" }, { "title": "Audiobooks", "url": "https://rdsm.ca/audio", "icon": "cassette-fill" }, - { "title": "Pandora", "url": "https://www.pandora.com/", "icon": "music-note-list" }, - { "title": "Ooh!Directory", "url": "https://ooh.directory/updated/", "icon": "bookmarks"} + { "title": "Pandora", "url": "https://www.pandora.com/", "icon": "music-note-list" } ] diff --git a/buildfiles/x265/build.sh b/buildfiles/x265/build.sh index 43698ab..4beb368 100755 --- a/buildfiles/x265/build.sh +++ b/buildfiles/x265/build.sh @@ -7,10 +7,8 @@ pushd "$builddir" rm -rf ./build ./build-10 ./build-12 -if [ -d "./x265_git" ]; then - git -C "./x265_git" pull -else - git clone "https://bitbucket.org/multicoreware/x265_git.git" +if [ ! -d "./x265_git" ]; then + git clone --depth 1 --branch 3.4.1 "https://bitbucket.org/multicoreware/x265_git.git" fi cmake -S x265_git/source -B build-12 \ diff --git a/nvim/lua/plugins-conf.lua b/nvim/lua/plugins-conf.lua index b7942db..3ef3196 100644 --- a/nvim/lua/plugins-conf.lua +++ b/nvim/lua/plugins-conf.lua @@ -213,3 +213,18 @@ require('true-zen').setup { } } +-- debug adapter protocol for .net core +local dap = require('dap') +dap.adapters.coreclr = { + type = 'executable', + command = '/home/rudism/.local/bin/netcoredbg', + args = {'--interpreter=vscode'}, +} +dap.configurations.cs = {{ + type = "coreclr", + name = "launch - netcoredbg", + request = "launch", + program = function() + return vim.fn.input('Path to dll', vim.fn.getcwd() .. '/bin/Debug/', 'file') + end, +}} diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index be2f6b8..7ab8024 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -25,6 +25,7 @@ return require('packer').startup(function() {'hrsh7th/cmp-path'}, -- path autocompletes } } + use 'mfussenegger/nvim-dap' -- debug adapter protocol use { -- gitgutter replacement 'lewis6991/gitsigns.nvim', requires = { diff --git a/shell/bashrc.d/01-common.sh b/shell/bashrc.d/01-common.sh index a6b6c73..f3474a1 100644 --- a/shell/bashrc.d/01-common.sh +++ b/shell/bashrc.d/01-common.sh @@ -35,7 +35,7 @@ alias gitlog='git log --oneline --graph' alias watchsync='watch grep -e Dirty: -e Writeback: /proc/meminfo' alias psgrep='ps -ef | grep -v grep | grep' alias serve='python -m http.server' -alias dockerrm='docker stop $(docker ps -aq); docker rm -v $(docker ps -aq); docker volume prune -f; docker rmi $(docker images -q --filter "dangling=true")' +alias dockerrm='docker stop $(docker ps -aq); docker rm -v $(docker ps -aq); docker volume prune -f --filter all=true; docker rmi $(docker images -q --filter "dangling=true")' alias cls='clear && echo -en "\e[3J"' alias removebom="sed -i \$'1s/^\uFEFF//'" alias duskh="du -hka --max-depth=1 | sort -h"