📝 Made updates to backups
This commit is contained in:
parent
c3a9b98352
commit
6bcea52d96
7 changed files with 8739 additions and 9 deletions
8657
.config/newsboat/rss/nvim.rss
Normal file
8657
.config/newsboat/rss/nvim.rss
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -15,5 +15,6 @@ file://./rss/ewontfix.rss
|
||||||
file://./rss/0pointer.rss
|
file://./rss/0pointer.rss
|
||||||
file://./rss/lkml.php
|
file://./rss/lkml.php
|
||||||
file://./rss/artix.php
|
file://./rss/artix.php
|
||||||
|
file://./rss/nvim.rss
|
||||||
file://./rss/skolelinux.rss
|
file://./rss/skolelinux.rss
|
||||||
file://rss/simonwillison.atom
|
file://rss/simonwillison.atom
|
||||||
|
|
|
||||||
|
|
@ -87,3 +87,17 @@ vim.cmd([[command! -nargs=* FZFExplore call FzfExplore(shellescape(<q-args>))]])
|
||||||
|
|
||||||
-- fzf is on bottom of screen
|
-- fzf is on bottom of screen
|
||||||
vim.cmd([[let g:fzf_layout = { 'down': '~30%' }]])
|
vim.cmd([[let g:fzf_layout = { 'down': '~30%' }]])
|
||||||
|
|
||||||
|
--lastplace ignores fzf
|
||||||
|
vim.cmd([[let g:lastplace_ignore_buftype = "quickfix, nofile, help, FZF"]])
|
||||||
|
|
||||||
|
-- jump to last place visited in file
|
||||||
|
vim.api.nvim_create_autocmd('BufReadPost', {
|
||||||
|
callback = function()
|
||||||
|
local mark = vim.api.nvim_buf_get_mark(0, '"')
|
||||||
|
local lcount = vim.api.nvim_buf_line_count(0)
|
||||||
|
if mark[1] > 0 and mark[1] <= lcount then
|
||||||
|
pcall(vim.api.nvim_win_set_cursor, 0, mark)
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
|
||||||
2
aliases
2
aliases
|
|
@ -212,6 +212,8 @@ alias jester="jest --watchAll"
|
||||||
# generate unique ids from cli, example for no special characters:
|
# generate unique ids from cli, example for no special characters:
|
||||||
# nanoid --alphabet "abcdefghijklmnopqrstuvwxyz" --size 40
|
# nanoid --alphabet "abcdefghijklmnopqrstuvwxyz" --size 40
|
||||||
alias nanoid="npx nanoid"
|
alias nanoid="npx nanoid"
|
||||||
|
# informs on dependency updates
|
||||||
|
alias taze="npx taze"
|
||||||
alias pip_upgrade="python -m pip install --upgrade pip"
|
alias pip_upgrade="python -m pip install --upgrade pip"
|
||||||
alias rust_upgrade="rustup update"
|
alias rust_upgrade="rustup update"
|
||||||
alias nb="newsboat"
|
alias nb="newsboat"
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -235,10 +235,36 @@
|
||||||
"https://caniuse.com",
|
"https://caniuse.com",
|
||||||
"https://www.browserstack.com",
|
"https://www.browserstack.com",
|
||||||
"https://espanso.org//",
|
"https://espanso.org//",
|
||||||
"§:espanso.org"
|
"§:espanso.org",
|
||||||
|
"§:nprapps.org",
|
||||||
|
"§:stripe.com",
|
||||||
|
"§:cookielaw.org",
|
||||||
|
"§:biriukov.dev",
|
||||||
|
"https://forgejo.org",
|
||||||
|
"§:iamv.ir",
|
||||||
|
"https://terminal.sexy",
|
||||||
|
"§:iheart.com",
|
||||||
|
"https://twinery.org",
|
||||||
|
"https://chat.openai.com",
|
||||||
|
"https://drewdevault.com",
|
||||||
|
"https://colordesigner.io",
|
||||||
|
"§:doubleclick.net",
|
||||||
|
"https://axonflux.com",
|
||||||
|
"§:iconify.design",
|
||||||
|
"https://bugswriter.com",
|
||||||
|
"https://www.getzola.org",
|
||||||
|
"https://codereview.stackexchange.com",
|
||||||
|
"https://vuejs.org/api/",
|
||||||
|
"§:builtwith.com",
|
||||||
|
"https://javascriptjob.xyz",
|
||||||
|
"§:vuejs.org",
|
||||||
|
"https://vuejobs.com",
|
||||||
|
"§:unpkg.com",
|
||||||
|
"https://alexanderle.com",
|
||||||
|
"§:vuejsexamples.com",
|
||||||
|
"https://this-week-in-neovim.org"
|
||||||
],
|
],
|
||||||
"untrusted": [
|
"untrusted": [
|
||||||
"google.com",
|
|
||||||
"hotmail.com",
|
"hotmail.com",
|
||||||
"noscript.net",
|
"noscript.net",
|
||||||
"twitter.com",
|
"twitter.com",
|
||||||
|
|
@ -249,10 +275,7 @@
|
||||||
"googlevideo.com",
|
"googlevideo.com",
|
||||||
"maps.googleapis.com",
|
"maps.googleapis.com",
|
||||||
"google-analytics.com",
|
"google-analytics.com",
|
||||||
"eehuzaih.com",
|
|
||||||
"genieessp.com",
|
|
||||||
"hhklc.com",
|
"hhklc.com",
|
||||||
"luxubu.review",
|
|
||||||
"yandex.ru",
|
"yandex.ru",
|
||||||
"propellerads.com",
|
"propellerads.com",
|
||||||
"mikedcavish.com",
|
"mikedcavish.com",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue