nvim
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
{
|
||||
event = "FileType";
|
||||
group = "Christoph";
|
||||
pattern = "*.ex,*.exs,*.heex";
|
||||
pattern = "elixir,eelixir,heex";
|
||||
command = "setlocal expandtab tabstop=2 shiftwidth=2 softtabstop=2";
|
||||
}
|
||||
];
|
||||
|
||||
@@ -321,13 +321,13 @@
|
||||
{
|
||||
mode = "n";
|
||||
key = "<leader>lj";
|
||||
action = ":lua vim.diagnostic.goto_next()<CR>";
|
||||
action = ":lua vim.diagnostic.jump({ count = 1 })<CR>";
|
||||
options.desc = "Next diagnostic";
|
||||
}
|
||||
{
|
||||
mode = "n";
|
||||
key = "<leader>lk";
|
||||
action = ":lua vim.diagnostic.goto_prev()<CR>";
|
||||
action = ":lua vim.diagnostic.jump({ count = -1 })<CR>";
|
||||
options.desc = "Prev diagnostic";
|
||||
}
|
||||
{
|
||||
|
||||
@@ -10,8 +10,10 @@
|
||||
list = false;
|
||||
mouse = "";
|
||||
relativenumber = true;
|
||||
scrolloff = 8;
|
||||
shiftwidth = 2;
|
||||
smartcase = true;
|
||||
undofile = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -131,6 +131,15 @@
|
||||
diff = {};
|
||||
extra = {};
|
||||
git = {};
|
||||
hipatterns = {
|
||||
highlighters = {
|
||||
fixme.__raw = "{ pattern = '%f[%w]()FIXME()%f[%W]', group = 'MiniHipatternsFixme' }";
|
||||
hack.__raw = "{ pattern = '%f[%w]()HACK()%f[%W]', group = 'MiniHipatternsHack' }";
|
||||
todo.__raw = "{ pattern = '%f[%w]()TODO()%f[%W]', group = 'MiniHipatternsTodo' }";
|
||||
note.__raw = "{ pattern = '%f[%w]()NOTE()%f[%W]', group = 'MiniHipatternsNote' }";
|
||||
hex_color.__raw = "require('mini.hipatterns').gen_highlighter.hex_color()";
|
||||
};
|
||||
};
|
||||
icons = {};
|
||||
indentscope = {
|
||||
settings = {
|
||||
@@ -149,8 +158,10 @@
|
||||
};
|
||||
};
|
||||
move = {};
|
||||
notify = {};
|
||||
pairs = {};
|
||||
pick = {};
|
||||
splitjoin = {};
|
||||
starter = {};
|
||||
statusline = {};
|
||||
surround = {};
|
||||
|
||||
Reference in New Issue
Block a user