mirror of
https://github.com/gabehf/nvim-conf.git
synced 2026-03-11 16:30:30 -07:00
fix statusline + some lsp stuff
This commit is contained in:
parent
cc4abb76ee
commit
d9d98ca2c8
12 changed files with 216 additions and 60 deletions
|
|
@ -5,12 +5,67 @@ local function on_attach(bufnr)
|
|||
end
|
||||
|
||||
local M = {
|
||||
disable_netrw = true,
|
||||
on_attach = on_attach,
|
||||
git = { ignore = false },
|
||||
filters = {
|
||||
dotfiles = false,
|
||||
},
|
||||
disable_netrw = true,
|
||||
hijack_netrw = true,
|
||||
hijack_cursor = true,
|
||||
hijack_unnamed_buffer_when_opening = false,
|
||||
sync_root_with_cwd = true,
|
||||
update_focused_file = {
|
||||
enable = true,
|
||||
update_root = false,
|
||||
},
|
||||
view = {
|
||||
adaptive_size = false,
|
||||
side = "left",
|
||||
width = 30,
|
||||
preserve_window_proportions = true,
|
||||
},
|
||||
git = {
|
||||
enable = true,
|
||||
ignore = false,
|
||||
},
|
||||
filesystem_watchers = {
|
||||
enable = true,
|
||||
},
|
||||
actions = {
|
||||
open_file = {
|
||||
resize_window = true,
|
||||
},
|
||||
},
|
||||
renderer = {
|
||||
root_folder_label = false,
|
||||
highlight_git = true,
|
||||
highlight_opened_files = "none",
|
||||
|
||||
indent_markers = {
|
||||
enable = false,
|
||||
},
|
||||
|
||||
icons = {
|
||||
show = {
|
||||
file = true,
|
||||
folder = true,
|
||||
folder_arrow = true,
|
||||
git = true,
|
||||
},
|
||||
|
||||
glyphs = {
|
||||
default = "",
|
||||
symlink = "",
|
||||
folder = {
|
||||
default = "",
|
||||
empty = "",
|
||||
empty_open = "",
|
||||
open = "",
|
||||
symlink = "",
|
||||
symlink_open = "",
|
||||
arrow_open = "",
|
||||
arrow_closed = "",
|
||||
},
|
||||
git = { -- this is so stupid lmao
|
||||
unstaged = "😴",
|
||||
staged = "😎",
|
||||
|
|
@ -24,4 +79,24 @@ local M = {
|
|||
},
|
||||
}
|
||||
|
||||
-- local M = {
|
||||
-- disable_netrw = true,
|
||||
-- on_attach = on_attach,
|
||||
-- git = { ignore = false },
|
||||
-- renderer = {
|
||||
-- icons = {
|
||||
-- glyphs = {
|
||||
-- git = { -- this is so stupid lmao
|
||||
-- unstaged = "😴",
|
||||
-- staged = "😎",
|
||||
-- unmerged = "😈",
|
||||
-- untracked = "😭",
|
||||
-- renamed = "😶",
|
||||
-- deleted = "😵",
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
-- }
|
||||
|
||||
return M
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue