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"
|
TERM = "xterm-256color"
|
||||||
|
|
||||||
[font]
|
[font]
|
||||||
size = 10.0
|
size = 10.5
|
||||||
|
|
||||||
[font.bold]
|
[font.bold]
|
||||||
family = "JetBrainsMono NF"
|
family = "JetBrainsMono NF"
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
vim.g.mapleader = " "
|
vim.g.mapleader = " "
|
||||||
vim.g.maplocalleader = " "
|
vim.g.maplocalleader = " "
|
||||||
|
vim.g.mouse = "a"
|
||||||
|
|
||||||
require 'core.lazy'
|
require("core.lazy")
|
||||||
require 'core.options'
|
require("core.options")
|
||||||
require 'core.keymaps'
|
require("core.keymaps")
|
||||||
require 'core.autocmds'
|
require("core.autocmds")
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
return {
|
return {
|
||||||
"stevearc/conform.nvim",
|
"stevearc/conform.nvim",
|
||||||
opts = {
|
opts = {
|
||||||
|
icon = "", --'▎',
|
||||||
formatters_by_ft = {
|
formatters_by_ft = {
|
||||||
lua = { "stylua" },
|
lua = { "stylua" },
|
||||||
python = { "ruff_format", "ruff_fix" },
|
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 {
|
return {
|
||||||
"akinsho/bufferline.nvim",
|
"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 = {
|
dependencies = {
|
||||||
"nvim-tree/nvim-web-devicons",
|
"nvim-tree/nvim-web-devicons",
|
||||||
},
|
},
|
||||||
|
|
|
@ -56,7 +56,7 @@ alias cat='bat --paging=never --theme=Dracula'
|
||||||
alias ls="eza"
|
alias ls="eza"
|
||||||
alias la="eza -lagh --git --header"
|
alias la="eza -lagh --git --header"
|
||||||
alias lt="eza -T --git-ignore"
|
alias lt="eza -T --git-ignore"
|
||||||
alias nano='micro'
|
#alias nano='micro'
|
||||||
## files/dirs
|
## files/dirs
|
||||||
alias zshe='vim ~/.zshrc'
|
alias zshe='vim ~/.zshrc'
|
||||||
alias zshs='. ~/.zshrc'
|
alias zshs='. ~/.zshrc'
|
||||||
|
|
Loading…
Add table
Reference in a new issue