diff options
| author | Xander Swan <email> | 2025-12-03 10:00:41 -0500 |
|---|---|---|
| committer | Xander Swan <email> | 2025-12-03 10:00:41 -0500 |
| commit | ab57a70296890a7cbc4bb8b47e309e4857c6cd29 (patch) | |
| tree | ee13dcbe4e94f1b668d4cb821992f9f90a6c9023 /.config/nvim/lua/plugin_conf.lua | |
| parent | a9bd3263f74bb219ecc451b7c145f229aabd139a (diff) | |
AAAAAAA
Diffstat (limited to '.config/nvim/lua/plugin_conf.lua')
| -rw-r--r-- | .config/nvim/lua/plugin_conf.lua | 48 |
1 files changed, 25 insertions, 23 deletions
diff --git a/.config/nvim/lua/plugin_conf.lua b/.config/nvim/lua/plugin_conf.lua index da62a99..53f0929 100644 --- a/.config/nvim/lua/plugin_conf.lua +++ b/.config/nvim/lua/plugin_conf.lua @@ -1,11 +1,11 @@ -require('nvim-tree').setup{} +require("nvim-tree").setup{} -require('lualine').setup { +require("lualine").setup { options = { icons_enabled = false, - -- theme = 'dracula-nvim', - component_separators = { left = ' ', right = ' '}, - section_separators = { left = ' ', right = ' '}, + -- theme = "dracula-nvim", + component_separators = { left = " ", right = " "}, + section_separators = { left = " ", right = " "}, disabled_filetypes = { statusline = {}, winbar = {}, @@ -20,18 +20,18 @@ require('lualine').setup { } }, sections = { - lualine_a = {'mode'}, - lualine_b = {'branch', 'diff', 'diagnostics'}, - lualine_c = {'filename'}, - lualine_x = {'encoding', 'fileformat', 'filetype'}, - lualine_y = {'progress'}, - lualine_z = {'location'} + lualine_a = {"mode"}, + lualine_b = {"branch", "diff", "diagnostics"}, + lualine_c = {"filename"}, + lualine_x = {"encoding", "fileformat", "filetype"}, + lualine_y = {"progress"}, + lualine_z = {"location"} }, inactive_sections = { lualine_a = {}, lualine_b = {}, - lualine_c = {'filename'}, - lualine_x = {'location'}, + lualine_c = {"filename"}, + lualine_x = {"location"}, lualine_y = {}, lualine_z = {} }, @@ -41,23 +41,25 @@ require('lualine').setup { extensions = {} } -require('nvim-autopairs').setup{ +require("nvim-autopairs").setup { fast_wrap = { - map = '<M-e>', - chars = { '{', '[', '(', '"', "'" }, - pattern = [=[[%'%"%>%]%)%}%,]]=], - end_key = '$', - keys = 'qwertyuiopzxcvbnmasdfghjkl', + map = "<M-e>", + chars = { "{", "[", "(", "\"", "'" }, + pattern = [=[[%"%"%>%]%)%}%,]]=], + end_key = "$", + keys = "qwertyuiopzxcvbnmasdfghjkl", check_comma = true, - highlight = 'Search', - highlight_grey='Comment' + highlight = "Search", + highlight_grey="Comment" } } -require('terminal').setup{ +require("barbar").setup {} + +require("terminal").setup{ layout = { open_cmd = "botright new" }, cmd = { vim.o.shell }, autoclose = false, } -require('Comment').setup {} +require("Comment").setup {} |
