10012024
This commit is contained in:
parent
3490f1c273
commit
2f50d58d10
5 changed files with 17 additions and 26 deletions
|
@ -14,7 +14,7 @@ shape = "Block"
|
|||
TERM = "xterm-256color"
|
||||
|
||||
[font]
|
||||
size = 10.0
|
||||
size = 10.5
|
||||
|
||||
[font.bold]
|
||||
family = "JetBrainsMono NF"
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
vim.g.mapleader = " "
|
||||
vim.g.maplocalleader = " "
|
||||
vim.g.mouse = "a"
|
||||
|
||||
require 'core.lazy'
|
||||
require 'core.options'
|
||||
require 'core.keymaps'
|
||||
require 'core.autocmds'
|
||||
require("core.lazy")
|
||||
require("core.options")
|
||||
require("core.keymaps")
|
||||
require("core.autocmds")
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
return {
|
||||
"stevearc/conform.nvim",
|
||||
opts = {
|
||||
icon = "", --'▎',
|
||||
formatters_by_ft = {
|
||||
lua = { "stylua" },
|
||||
python = { "ruff_format", "ruff_fix" },
|
||||
|
|
|
@ -1,25 +1,14 @@
|
|||
local config = function()
|
||||
local bufferline = require("bufferline")
|
||||
bufferline.setup({
|
||||
options = {
|
||||
-- style_preset = bufferline.style_preset.no_italic,
|
||||
-- or you can combine these e.g.
|
||||
style_preset = {
|
||||
bufferline.style_preset.no_italic,
|
||||
bufferline.style_preset.no_bold,
|
||||
},
|
||||
hover = {
|
||||
enabled = true,
|
||||
delay = 200,
|
||||
reveal = { "close" },
|
||||
},
|
||||
},
|
||||
})
|
||||
end
|
||||
|
||||
return {
|
||||
"akinsho/bufferline.nvim",
|
||||
opts = config,
|
||||
opts = {
|
||||
options = {
|
||||
-- diagnostics = "nvim_lsp",
|
||||
always_show_bufferline = false,
|
||||
offsets = {
|
||||
{ filetype = "NvimTree", text = "File Explorer", highlight = "Directory", text_align = "left" },
|
||||
},
|
||||
},
|
||||
},
|
||||
dependencies = {
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
},
|
||||
|
|
|
@ -56,7 +56,7 @@ alias cat='bat --paging=never --theme=Dracula'
|
|||
alias ls="eza"
|
||||
alias la="eza -lagh --git --header"
|
||||
alias lt="eza -T --git-ignore"
|
||||
alias nano='micro'
|
||||
#alias nano='micro'
|
||||
## files/dirs
|
||||
alias zshe='vim ~/.zshrc'
|
||||
alias zshs='. ~/.zshrc'
|
||||
|
|
Loading…
Add table
Reference in a new issue