Update
This commit is contained in:
parent
5e8139963f
commit
a781a227ac
@ -12,7 +12,6 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
|
|||||||
- [ ] Nixvim
|
- [ ] Nixvim
|
||||||
- [ ] Telescope Theme
|
- [ ] Telescope Theme
|
||||||
- [ ] Markdown tab size 2
|
- [ ] Markdown tab size 2
|
||||||
- [ ] Harpoon
|
|
||||||
- [ ] UFO for folding
|
- [ ] UFO for folding
|
||||||
- [ ] neotest golang
|
- [ ] neotest golang
|
||||||
- [ ] nvim dap
|
- [ ] nvim dap
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
breadcrumb = "»";
|
breadcrumb = "»";
|
||||||
group = "+";
|
group = "+";
|
||||||
separator = ""; # ➜
|
separator = ""; # ➜
|
||||||
|
mappings = false;
|
||||||
};
|
};
|
||||||
spec = [
|
spec = [
|
||||||
# General Mappings
|
# General Mappings
|
||||||
|
@ -22,11 +22,13 @@
|
|||||||
hlsearch = true;
|
hlsearch = true;
|
||||||
smartcase = true;
|
smartcase = true;
|
||||||
wildmode = "list:longest";
|
wildmode = "list:longest";
|
||||||
completeopt = [ "menuone" "noselect" ];
|
completeopt = [ "menuone" "noselect" "noinsert" ];
|
||||||
signcolumn = "yes";
|
signcolumn = "yes";
|
||||||
cursorline = false;
|
cursorline = false;
|
||||||
scrolloff = 8;
|
scrolloff = 8;
|
||||||
mouse = "a";
|
mouse = "a";
|
||||||
|
termguicolors = true;
|
||||||
|
showmode = false;
|
||||||
|
|
||||||
wrap = false;
|
wrap = false;
|
||||||
|
|
||||||
|
@ -6,53 +6,40 @@
|
|||||||
lualine = {
|
lualine = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
options = {
|
|
||||||
sections = {
|
|
||||||
lualine_a = [ "mode" ];
|
|
||||||
lualine_b = [ ];
|
|
||||||
lualine_c = [ ];
|
|
||||||
lualine_y = [{
|
|
||||||
__unkeyed-1 = "aerial";
|
|
||||||
colored = true;
|
|
||||||
cond = {
|
|
||||||
__raw = ''
|
|
||||||
function()
|
|
||||||
local buf_size_limit = 1024 * 1024
|
|
||||||
if vim.api.nvim_buf_get_offset(0, vim.api.nvim_buf_line_count(0)) > buf_size_limit then
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
|
|
||||||
return true
|
alwaysDivideMiddle = true;
|
||||||
end
|
globalstatus = true;
|
||||||
'';
|
ignoreFocus = [ "neo-tree" ];
|
||||||
};
|
extensions = [ "fzf" ];
|
||||||
dense = false;
|
theme = "auto";
|
||||||
dense_sep = ".";
|
componentSeparators = {
|
||||||
depth = { __raw = "nil"; };
|
left = "|";
|
||||||
sep = " ) ";
|
right = "|";
|
||||||
}];
|
};
|
||||||
lualine_z = [{ __unkeyed-1 = "location"; }];
|
sectionSeparators = {
|
||||||
};
|
left = "█"; #
|
||||||
tabline = {
|
right = "█"; #
|
||||||
lualine_a = [{
|
};
|
||||||
__unkeyed-1 = "buffers";
|
sections = {
|
||||||
symbols = { alternate_file = ""; };
|
lualine_a = [ "mode" ];
|
||||||
}];
|
lualine_b = [ "branch" "diff" "diagnostics" ];
|
||||||
lualine_z = [ "tabs" ];
|
lualine_c = [ "filename" ];
|
||||||
};
|
lualine_x = [ "filetype" ];
|
||||||
|
lualine_y = [ "progress" ];
|
||||||
|
lualine_z = [ ''" " .. os.date("%R")'' ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
dap.enable = true;
|
dap.enable = true;
|
||||||
web-devicons.enable = true;
|
web-devicons.enable = true;
|
||||||
noice.enable = true;
|
noice.enable = true;
|
||||||
|
notify.enable = true;
|
||||||
gitsigns = {
|
gitsigns = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings.current_line_blame = false;
|
settings.current_line_blame = false;
|
||||||
};
|
};
|
||||||
trouble.enable = true;
|
trouble.enable = true;
|
||||||
indent-blankline.enable = true;
|
indent-blankline.enable = true;
|
||||||
which-key.enable = true;
|
|
||||||
nvim-colorizer.enable = true;
|
nvim-colorizer.enable = true;
|
||||||
tagbar = {
|
tagbar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user