mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-04-19 16:27:45 +02:00
Compare commits
3 Commits
cf0389b1d3
...
62ee4ff09a
Author | SHA1 | Date | |
---|---|---|---|
62ee4ff09a | |||
f8f626cd67 | |||
90e728779f |
@ -32,10 +32,11 @@ alias drop="dragon-drop"
|
||||
|
||||
# fzf
|
||||
src() { find ~/.config/* ~/.local/bin/* -type f | fzf | xargs -r $EDITOR ;}
|
||||
srd() { find ~/nextCloud/* -type f | grep ".pdf" | fzf | xargs -r $READER ;}
|
||||
srd() { find ~/cloud/* -type f | grep ".pdf" | fzf | xargs -r $READER ;}
|
||||
|
||||
yaya() { yay -Slq | fzf --reverse --prompt="yay install > " -q "$1" -m --preview 'yay -Si {1}'| xargs -ro yay -S }
|
||||
yayr() { yay -Qq | fzf --reverse --prompt="yay remove > " -q "$1" -m --preview 'yay -Qi {1}' | xargs -ro yay -Rns }
|
||||
yayu() { yay -Qqe | fzf --reverse --prompt="yay install > " -q "$1" -m --preview 'yay -Si {1}'| xargs -ro yay -S }
|
||||
|
||||
# ghb
|
||||
alias vidcoder="ghb"
|
||||
|
@ -65,11 +65,18 @@ vim.o.undodir = vim.env.XDG_CACHE_HOME .. "/vim/undo"
|
||||
vim.g.python_host_prog = '/usr/bin/python2'
|
||||
vim.g.python3_host_prog = '/usr/bin/python3'
|
||||
|
||||
-- append
|
||||
-- display certain invisible chars
|
||||
vim.opt.list = true
|
||||
vim.opt.listchars:append "space:·"
|
||||
vim.opt.listchars:append "eol:"
|
||||
|
||||
-- folding
|
||||
vim.o.foldcolumn = '0'
|
||||
vim.o.foldlevel = 99
|
||||
vim.o.foldlevelstart = 99
|
||||
vim.o.foldenable = true
|
||||
|
||||
|
||||
-- set filetypes correctly by extension
|
||||
require('autocmd')
|
||||
|
||||
|
@ -104,6 +104,10 @@ return require("packer").startup(function(use)
|
||||
requires = { 'nvim-treesitter/nvim-treesitter' }
|
||||
}
|
||||
|
||||
-- folding improvements
|
||||
use { 'kevinhwang91/nvim-ufo',
|
||||
requires = 'kevinhwang91/promise-async' }
|
||||
|
||||
-- colorful brackets
|
||||
use { 'luochen1990/rainbow' }
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
-- tiyn/vim-tccs
|
||||
vim.cmd('colorscheme tccs')
|
||||
vim.api.nvim_set_hl(0, 'colorcolumn', { bg = '#772222' })
|
||||
|
||||
|
@ -2,6 +2,12 @@
|
||||
require('lualine').setup {
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
symbols = {
|
||||
error = '',
|
||||
warn = '',
|
||||
hint = '',
|
||||
info = '',
|
||||
},
|
||||
theme = 'tccs',
|
||||
component_separators = { left = '', right = '' },
|
||||
section_separators = { left = '', right = '' },
|
||||
|
@ -113,6 +113,7 @@ require("mason").setup()
|
||||
-- williamboman/mason-lspconfig.nvim
|
||||
require("mason-lspconfig").setup({
|
||||
automatic_setup = true,
|
||||
ensure_installed = { "pyright", "bashls", "texlab", "nimls", "marksman", "jdtls", "lua_ls" }
|
||||
})
|
||||
|
||||
-- jay-babu/mason-null-ls.nvim
|
||||
@ -138,16 +139,22 @@ local cmp_nvim_lsp = require("cmp_nvim_lsp")
|
||||
-- neovim/nvim-lspconfig
|
||||
local nvim_lsp = require('lspconfig')
|
||||
|
||||
local servers = { "pyright", "bashls", "texlab", "ccls", "nimls", "marksman" }
|
||||
local servers = { "pyright", "bashls", "texlab", "nimls", "marksman" }
|
||||
|
||||
local attach_func = function(client, bufnr)
|
||||
navbuddy.attach(client, bufnr)
|
||||
end
|
||||
|
||||
local capabilities = cmp_nvim_lsp.default_capabilities()
|
||||
capabilities.textDocument.foldingRange = {
|
||||
dynamicRegistration = false,
|
||||
lineFoldingOnly = true
|
||||
}
|
||||
|
||||
for _, lsp in ipairs(servers) do
|
||||
nvim_lsp[lsp].setup {
|
||||
on_attach = attach_func,
|
||||
capabilities = cmp_nvim_lsp.default_capabilities(),
|
||||
capabilities = capabilities,
|
||||
flags = {
|
||||
debounce_text_changes = 150
|
||||
}
|
||||
@ -156,6 +163,7 @@ end
|
||||
|
||||
require 'lspconfig'.jdtls.setup {
|
||||
on_attach = attach_func,
|
||||
capabilities = capabilities,
|
||||
flags = {
|
||||
debounce_text_changes = 150
|
||||
},
|
||||
@ -164,6 +172,7 @@ require 'lspconfig'.jdtls.setup {
|
||||
|
||||
require 'lspconfig'.lua_ls.setup {
|
||||
on_attach = attach_func,
|
||||
capabilities = capabilities,
|
||||
settings = {
|
||||
Lua = {
|
||||
runtime = { version = 'LuaJIT' },
|
||||
@ -173,3 +182,22 @@ require 'lspconfig'.lua_ls.setup {
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
require('ufo').setup()
|
||||
|
||||
vim.fn.sign_define(
|
||||
"DiagnosticSignError",
|
||||
{ texthl = "DiagnosticSignError", text = "", numhl = "DiagnosticSignError" }
|
||||
)
|
||||
vim.fn.sign_define(
|
||||
"DiagnosticSignWarn",
|
||||
{ texthl = "DiagnosticSignWarn", text = "", numhl = "DiagnosticSignWarn" }
|
||||
)
|
||||
vim.fn.sign_define(
|
||||
"DiagnosticSignInfo",
|
||||
{ texthl = "DiagnosticSignInfo", text = "", numhl = "DiagnosticSignInfo" }
|
||||
)
|
||||
vim.fn.sign_define(
|
||||
"DiagnosticSignHint",
|
||||
{ texthl = "DiagnosticSignHint", text = "", numhl = "DiagnosticSignHint" }
|
||||
)
|
||||
|
@ -5,12 +5,13 @@ require 'todo-comments'.setup {
|
||||
sign_priority = 8, -- sign priority
|
||||
-- keywords recognized as todo comments
|
||||
keywords = {
|
||||
ERRO = { icon = " ", color = "error" },
|
||||
TODO = { icon = " ", color = "info" },
|
||||
HACK = { icon = " ", color = "warning" },
|
||||
ERRO = { icon = " ", color = "error" },
|
||||
TODO = { icon = " ", color = "info" },
|
||||
WARN = { icon = " ", color = "warning" },
|
||||
PERF = { icon = " ", color = "default" },
|
||||
NOTE = { icon = " ", color = "hint" },
|
||||
HACK = { icon = " ", color = "warning" },
|
||||
PERF = { icon = " ", color = "perfect" },
|
||||
HINT = { icon = " ", color = "hint" },
|
||||
INFO = { icon = " ", color = "hint", alt = { "NOTE" } },
|
||||
TEST = { icon = " ", color = "test" },
|
||||
},
|
||||
gui_style = {
|
||||
@ -37,11 +38,11 @@ require 'todo-comments'.setup {
|
||||
-- list of named colors where we try to extract the guifg from the
|
||||
-- list of highlight groups or use the hex color if hl not found as a fallback
|
||||
colors = {
|
||||
error = { "DiagnosticError", "ErrorMsg", "#DC2626" },
|
||||
warning = { "WarningMsg", "DiagnosticWarn", "#FBBF24" },
|
||||
info = { "Constant", "#2563EB" },
|
||||
hint = { "Comment", "#10B981" },
|
||||
default = { "Operator", "#7C3AED" },
|
||||
error = { "DiagnosticSignError", "ErrorMsg", "#DC2626" },
|
||||
warning = { "DiagnosticSignWarn", "WarningMsg", "#FBBF24" },
|
||||
info = { "Comment", "#2563EB" },
|
||||
hint = { "Constant", "#10B981" },
|
||||
perfect = { "Operator", "#7C3AED" },
|
||||
test = { "Function", "#FF00FF" }
|
||||
},
|
||||
search = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user