Compare commits
12 commits
b8932e9ca8
...
4f8d495191
Author | SHA1 | Date | |
---|---|---|---|
4f8d495191 | |||
e92e7e5b1c | |||
5dc8e5afce | |||
848f105df8 | |||
e884c94a99 | |||
cf7d890787 | |||
fdc85e5569 | |||
078578b173 | |||
8f6e1994df | |||
2b9981482f | |||
ff6dab2c8f | |||
e418e2508f |
5 changed files with 33 additions and 41 deletions
|
@ -4,6 +4,9 @@
|
|||
signingkey = 73BA40D5AFAF49C9
|
||||
[init]
|
||||
defaultBranch = main
|
||||
[sendemail]
|
||||
smtpserver = "/usr/bin/msmtp"
|
||||
annotate = yes
|
||||
[alias]
|
||||
ignore = "!gitignore -f"
|
||||
pushmerge = "push -o merge_request.merge_when_pipeline_succeeds" # see https://docs.gitlab.com/ce/user/project/push_options.html # merge-when-pipeline-succeeds-alias
|
||||
|
|
|
@ -38,10 +38,12 @@ local function wrap_up()
|
|||
if vim.v.count == 0 then return 'gk' end
|
||||
return 'k'
|
||||
end
|
||||
|
||||
local function wrap_down()
|
||||
if vim.v.count == 0 then return 'gj' end
|
||||
return 'j'
|
||||
end
|
||||
|
||||
map.n.nore.expr['k'] = wrap_up
|
||||
map.n.nore.expr['j'] = wrap_down
|
||||
|
||||
|
@ -183,8 +185,7 @@ map.x.nore.silent['<localleader>q'] = 'gq'
|
|||
map.n.nore.silent['<localleader>Q'] = 'vapJgqap'
|
||||
|
||||
-- Enter distraction free prose mode with F11
|
||||
map.n.nore.silent['<F11>'] = ':TZAtaraxis<cr>'
|
||||
map.n.nore.silent['<F10>'] = ':TZMinimalist<cr>'
|
||||
map.n.nore.silent['<F11>'] = ':ZenMode<cr>'
|
||||
|
||||
-- PLUGIN: fzf-bibtex
|
||||
-- map @@ to automatically insert citation reference at cursor
|
||||
|
@ -216,11 +217,11 @@ map.x['ga'] = '<Plug>(EasyAlign)'
|
|||
map.n['ga'] = '<Plug>(EasyAlign)'
|
||||
|
||||
-- PLUGIN: Navigator.nvim
|
||||
map.n.nore.silent['<c-h>'] = "<CMD>lua require('Navigator').left()<CR>"
|
||||
map.n.nore.silent['<c-k>'] = "<CMD>lua require('Navigator').up()<CR>"
|
||||
map.n.nore.silent['<c-l>'] = "<CMD>lua require('Navigator').right()<CR>"
|
||||
map.n.nore.silent['<c-j>'] = "<CMD>lua require('Navigator').down()<CR>"
|
||||
map.n.nore.silent['<c-p>'] = "<CMD>lua require('Navigator').previous()<CR>"
|
||||
map.n.nore.silent['<c-w>h'] = "<CMD>lua require('Navigator').left()<CR>"
|
||||
map.n.nore.silent['<c-w>k'] = "<CMD>lua require('Navigator').up()<CR>"
|
||||
map.n.nore.silent['<c-w>l'] = "<CMD>lua require('Navigator').right()<CR>"
|
||||
map.n.nore.silent['<c-w>j'] = "<CMD>lua require('Navigator').down()<CR>"
|
||||
map.n.nore.silent['<c-w>p'] = "<CMD>lua require('Navigator').previous()<CR>"
|
||||
|
||||
-- PLUGIN: compe.nvim
|
||||
-- lsp keymaps are set in lsp settings, only for lsp buffers
|
||||
|
|
|
@ -35,8 +35,7 @@ local formatters = {
|
|||
json = prettierfmt,
|
||||
lua = {
|
||||
function()
|
||||
return
|
||||
{exe = "lua-format", args = {"--indent-width", 4}, stdin = true}
|
||||
return { exe = "lua-format", args = { "--indent-width", 4 }, stdin = true }
|
||||
end
|
||||
},
|
||||
python = { function() return { exe = "black", args = { "-" }, stdin = true } end },
|
||||
|
|
|
@ -102,20 +102,8 @@ require("packer").startup(function()
|
|||
ft = { "quarto" }
|
||||
}
|
||||
use 'micarmst/vim-spellsync' -- personal dict improvements for git sync
|
||||
use { -- provide distraction free writing
|
||||
'Pocco81/TrueZen.nvim',
|
||||
config = function()
|
||||
require("true-zen").setup({
|
||||
integrations = {
|
||||
gitsigns = true,
|
||||
lualine = true,
|
||||
tmux = { global = false },
|
||||
limelight = true
|
||||
}
|
||||
})
|
||||
end
|
||||
}
|
||||
use { 'junegunn/limelight.vim', event = 'BufRead' } -- provide even distraction free-er writing (lowlight paragraphs)
|
||||
use { 'folke/zen-mode.nvim', config = require('zen-mode').setup() } -- provide distraction free writing
|
||||
use 'folke/twilight.nvim' -- provide even distraction free-er writing (lowlight paragraphs)
|
||||
use 'alok/notational-fzf-vim' -- quickly search through the wiki
|
||||
|
||||
-- languages
|
||||
|
|
|
@ -8,6 +8,7 @@ c.url.searchengines = {
|
|||
"aur": "https://aur.archlinux.org/packages/?K={}",
|
||||
"d": "https://www.dict.cc/?s={}",
|
||||
"ddg": "https://duckduckgo.com/?q={}",
|
||||
"docker": "https://hub.docker.com/search?q={}",
|
||||
"dt": "https://www.deepl.com/translator#en/de/{}",
|
||||
"g": "https://www.google.com/search?q={}",
|
||||
"gh": "https://github.com/search?q={}",
|
||||
|
|
Loading…
Reference in a new issue