This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vim:fileencoding=utf-8:foldmethod=marker | |
#: Fonts {{{ | |
font_size 14.0 | |
modify_font underline_position 150% | |
modify_font underline_thickness 150% | |
#: }}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generated from CLion Inspection settings | |
--- | |
Checks: '-*, | |
bugprone-argument-comment, | |
bugprone-assert-side-effect, | |
bugprone-bad-signal-to-kill-thread, | |
bugprone-branch-clone, | |
bugprone-copy-constructor-init, | |
bugprone-dangling-handle, | |
bugprone-dynamic-static-initializers, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local insert_same_with_and_append = function(args, _, _, user_arg1) | |
return sn(nil, { | |
i(1, args[1][1] .. user_arg1), | |
}) | |
end | |
local arf | |
local assert = s( | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Same with text node, used for function nodes | |
local function text_same_with(args) | |
return args[1] | |
end | |
-- Same with text node, used for dynamic nodes | |
local function insert_same_with(args) | |
return sn(nil, { | |
i(1, args[1]), | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- vim:foldmethod=marker | |
---@diagnostic disable: different-requires | |
-- Automatically download lazy.nvim if it doesn't exist | |
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim" | |
if not vim.loop.fs_stat(lazypath) then | |
vim.fn.system { | |
"git", | |
"clone", | |
"--filter=blob:none", | |
"--single-branch", |