config updates
This commit is contained in:
parent
1989b816a5
commit
2d64051bf0
|
@ -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" }
|
||||
]
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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,
|
||||
}}
|
||||
|
|
|
@ -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 = {
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue