Compare commits
No commits in common. "09af3f70a1f5915a62d5d54aa7c9df7fa2405040" and "a756f7b22cb0975467f332cc40a21d9577f038fc" have entirely different histories.
09af3f70a1
...
a756f7b22c
28
programs
28
programs
@ -1,4 +1,6 @@
|
|||||||
xwallpaper
|
xwallpaper
|
||||||
|
ncmpcpp
|
||||||
|
mpd
|
||||||
dunst
|
dunst
|
||||||
zathura
|
zathura
|
||||||
xkblayout-state
|
xkblayout-state
|
||||||
@ -8,29 +10,3 @@ xorg-xset
|
|||||||
xss-lock
|
xss-lock
|
||||||
qutebrowser
|
qutebrowser
|
||||||
picom
|
picom
|
||||||
neovim
|
|
||||||
keepassxc
|
|
||||||
jq
|
|
||||||
tmux
|
|
||||||
dash
|
|
||||||
fish
|
|
||||||
fzf
|
|
||||||
gimp
|
|
||||||
blender
|
|
||||||
audacity
|
|
||||||
pulsemixer
|
|
||||||
ffmppeg
|
|
||||||
mpv
|
|
||||||
netcat
|
|
||||||
nmap
|
|
||||||
remmina
|
|
||||||
yt-dlp
|
|
||||||
syncthing
|
|
||||||
inkscape
|
|
||||||
scrot
|
|
||||||
pynvim
|
|
||||||
python-lsp-server
|
|
||||||
bear
|
|
||||||
xsel
|
|
||||||
xwallpaper
|
|
||||||
xss-lock
|
|
||||||
|
@ -162,18 +162,36 @@ Plug 'nvim-treesitter/nvim-treesitter'
|
|||||||
|
|
||||||
Plug 'axieax/urlview.nvim'
|
Plug 'axieax/urlview.nvim'
|
||||||
|
|
||||||
Plug 'neovim/nvim-lspconfig'
|
|
||||||
Plug 'nvim-lua/completion-nvim'
|
|
||||||
Plug 'nvim-lua/lsp-status.nvim'
|
|
||||||
Plug 'stevearc/dressing.nvim'
|
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" copy URL under cursor to clipboard bind
|
lua << EOF
|
||||||
:nnoremap <silent><leader>uu :let @+ = expand('<cfile>')<CR>
|
require'nvim-treesitter.configs'.setup {
|
||||||
|
ensure_installed = { "c", "cpp", "javascript", "python", "vim", "latex", "fish", "bash" },
|
||||||
|
sync_install = false,
|
||||||
|
auto_install = false,
|
||||||
|
highlight = {
|
||||||
|
enable = true,
|
||||||
|
|
||||||
" see .config/nvim/lua/init.lua
|
disable = function(lang, buf)
|
||||||
lua require('init')
|
local max_filesize = 100 * 1024 -- 100 KB
|
||||||
|
local ok, stats = pcall(vim.loop.fs_stat, vim.api.nvim_buf_get_name(buf))
|
||||||
|
if ok and stats and stats.size > max_filesize then
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
|
||||||
|
lua << EOF
|
||||||
|
require("urlview").setup({
|
||||||
|
jump = {
|
||||||
|
prev = "<leader>uj",
|
||||||
|
next = "<leader>uh",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
EOF
|
||||||
|
:nnoremap <silent><leader>uu :let @+ = expand('<cfile>')<CR>
|
||||||
|
|
||||||
" Code folding
|
" Code folding
|
||||||
set foldmethod=expr
|
set foldmethod=expr
|
||||||
|
@ -1,84 +0,0 @@
|
|||||||
-- Syntax highlighting
|
|
||||||
require'nvim-treesitter.configs'.setup {
|
|
||||||
ensure_installed = { "c", "cpp", "javascript", "python", "vim", "latex", "fish", "bash" },
|
|
||||||
sync_install = false,
|
|
||||||
auto_install = false,
|
|
||||||
highlight = {
|
|
||||||
enable = true,
|
|
||||||
|
|
||||||
disable = function(lang, buf)
|
|
||||||
local max_filesize = 100 * 1024 -- 100 KB
|
|
||||||
local ok, stats = pcall(vim.loop.fs_stat, vim.api.nvim_buf_get_name(buf))
|
|
||||||
if ok and stats and stats.size > max_filesize then
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
-- motions to hop between URLs fast
|
|
||||||
require("urlview").setup({
|
|
||||||
jump = {
|
|
||||||
prev = "<leader>uj",
|
|
||||||
next = "<leader>uh",
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
local nvim_lsp = require('lspconfig')
|
|
||||||
|
|
||||||
local on_attach = function(client, bufnr)
|
|
||||||
local function buf_set_keymap(...) vim.api.nvim_buf_set_keymap(bufnr, ...) end
|
|
||||||
local function buf_set_option(...) vim.api.nvim_buf_set_option(bufnr, ...) end
|
|
||||||
-- Enable completion triggered by <c-x><c-o>
|
|
||||||
buf_set_option('omnifunc', 'v:lua.vim.lsp.omnifunc')
|
|
||||||
|
|
||||||
local opts = { noremap=true, silent=true }
|
|
||||||
buf_set_keymap('n', 'gD', '<cmd>lua vim.lsp.buf.declaration()<CR>', opts)
|
|
||||||
buf_set_keymap('n', 'gd', '<cmd>lua vim.lsp.buf.definition()<CR>', opts)
|
|
||||||
buf_set_keymap('n', 'gK', '<cmd>lua vim.lsp.buf.hover()<CR>', opts)
|
|
||||||
buf_set_keymap('n', 'gi', '<cmd>lua vim.lsp.buf.implementation()<CR>', opts)
|
|
||||||
buf_set_keymap('n', 'gs', '<cmd>lua vim.lsp.buf.signature_help()<CR>', opts)
|
|
||||||
buf_set_keymap('n', 'gt', '<cmd>lua vim.lsp.buf.type_definition()<CR>', opts)
|
|
||||||
buf_set_keymap('n', '<space>rn', '<cmd>lua vim.lsp.buf.rename()<CR>', opts)
|
|
||||||
buf_set_keymap('n', 'gr', '<cmd>lua vim.lsp.buf.references()<CR>', opts)
|
|
||||||
buf_set_keymap('n', '<space>e', '<cmd>lua vim.lsp.diagnostic.show_line_diagnostics()<CR>', opts)
|
|
||||||
buf_set_keymap('n', '[d', '<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>', opts)
|
|
||||||
buf_set_keymap('n', ']d', '<cmd>lua vim.lsp.diagnostic.goto_next()<CR>', opts)
|
|
||||||
buf_set_keymap('n', '<space>ca', '<cmd>lua vim.lsp.buf.code_action()<CR>', opts)
|
|
||||||
end
|
|
||||||
|
|
||||||
-- settings per server (overrides defaults)
|
|
||||||
local servers = {
|
|
||||||
pylsp = {
|
|
||||||
settings = {
|
|
||||||
pylsp = {
|
|
||||||
plugins = {
|
|
||||||
pydocstyle = {
|
|
||||||
enabled = true,
|
|
||||||
convention = "numpy",
|
|
||||||
addIgnore = {"D100", "D101", "D102", "D105"}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
clangd = {}
|
|
||||||
}
|
|
||||||
for lsp, sv_settings in pairs(servers) do
|
|
||||||
-- defaults
|
|
||||||
settings = {
|
|
||||||
on_attach = on_attach,
|
|
||||||
flags = {
|
|
||||||
debounce_text_changes = 150,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for k, v in pairs(servers) do settings[k] = v end
|
|
||||||
nvim_lsp[lsp].setup(settings[lsp])
|
|
||||||
end
|
|
||||||
|
|
||||||
-- fancy prompts
|
|
||||||
require('dressing').setup({
|
|
||||||
input = {
|
|
||||||
insert_only = false,
|
|
||||||
}
|
|
||||||
})
|
|
@ -3,7 +3,3 @@
|
|||||||
~/.cache/termdebug/%: %.cpp
|
~/.cache/termdebug/%: %.cpp
|
||||||
mkdir -p ~/.cache/termdebug/
|
mkdir -p ~/.cache/termdebug/
|
||||||
$(LINK.cpp) -g -Wall -Wpedantic $^ $(LOADLIBES) $(LDLIBS) -o $@
|
$(LINK.cpp) -g -Wall -Wpedantic $^ $(LOADLIBES) $(LDLIBS) -o $@
|
||||||
|
|
||||||
~/.cache/termdebug/%: %.c
|
|
||||||
mkdir -p ~/.cache/termdebug/
|
|
||||||
$(LINK.c) -g -Wall -Wpedantic $^ $(LOADLIBES) $(LDLIBS) -o $@
|
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
[pycodestyle]
|
|
||||||
ignore = E203
|
|
||||||
max-line-length = 88
|
|
Loading…
x
Reference in New Issue
Block a user