1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-26 02:01:14 +01:00

Compare commits

..

3 Commits

Author SHA1 Message Date
c5ddcf2da4 nvim: changed todo default color 2023-08-24 16:03:47 +02:00
3e5a8ccf80 sxhkd: swapped keys for better layout 2023-08-24 14:47:32 +02:00
0b85b42d15 nvim: changed not needed coc reference for lsp one 2023-08-24 14:46:43 +02:00
4 changed files with 10 additions and 8 deletions

View File

@@ -76,12 +76,12 @@ vim.g.markdown_folding = 1
-- load general mapped keys
require('style')
-- set filetypes correctly by extension
require('autocmd')
-- load plugins (autoload all files in plugin folder)
require('loadplugins')
-- set filetypes correctly by extension
require('autocmd')
-- load general mapped keys
require('keymap')

View File

@@ -96,8 +96,6 @@ vim.keymap.set('n', 'Zt', '<NOP>', { noremap = true })
vim.keymap.set('n', 'K', function()
local winid = require('ufo').peekFoldedLinesUnderCursor()
if not winid then
-- choose one of coc.nvim and nvim lsp
vim.fn.CocActionAsync('definitionHover') -- coc.nvim
vim.lsp.buf.hover()
end
end)

View File

@@ -373,6 +373,7 @@ return require("lazy").setup({
"css",
"html",
"markdown",
"markdown_inline",
"latex",
"python",
"lua",
@@ -439,6 +440,9 @@ return require("lazy").setup({
INFO = { icon = Info_sign, color = "hint", alt = { "NOTE" } },
PERF = { icon = Perfect_sign, color = "default" },
TEST = { icon = Test_sign, color = "test" }
},
colors = {
default = { "Operator" }
}
}
},

View File

@@ -1,11 +1,12 @@
super + u
record_start
super + i
record_stop
super + i
record_start
super + o
record_replay_start
super + p
record_replay_save
super + r
dmenu_run -c -l 20
@@ -60,4 +61,3 @@ XF86MonBrightnessDown
light -U 15
XF86MonBrightnessUp
light -A 15