feat: border config setting
This commit is contained in:
parent
13164d42bc
commit
f522d0f3bf
1 changed files with 77 additions and 75 deletions
|
@ -3,26 +3,27 @@
|
||||||
-- You can require null-ls if needed
|
-- You can require null-ls if needed
|
||||||
-- local null_ls = require('null-ls')
|
-- local null_ls = require('null-ls')
|
||||||
|
|
||||||
local config = {}
|
local config = {
|
||||||
|
-- See :h cmp-usage
|
||||||
|
autocomplete = {},
|
||||||
|
|
||||||
-- default statusline icon
|
-- See https://github.com/rmagatti/auto-session#%EF%B8%8F-configuration
|
||||||
config.statusline = {
|
auto_session = {},
|
||||||
main_icon = '★',
|
|
||||||
}
|
|
||||||
|
|
||||||
-- theming, don't forget to run :CosmicReloadSync when changing themes
|
-- See :h nvim_open_win for possible border options
|
||||||
-- 'catppuccin'
|
border = 'rounded',
|
||||||
-- 'dracula'
|
|
||||||
-- 'enfocado'
|
-- https://github.com/numToStr/Comment.nvim#configuration-optional
|
||||||
-- 'gruvbox'
|
comments = {},
|
||||||
-- 'nightfox'
|
|
||||||
-- 'nord'
|
-- See https://github.com/CosmicNvim/cosmic-ui#%EF%B8%8F-configuration
|
||||||
-- 'onedark'
|
cosmic_ui = {},
|
||||||
-- 'rose-pine'
|
|
||||||
config.theme = 'tokyonight' -- don't define or set to nil, if you want to enable your own theme in cosmic/config/plugins.lua
|
-- see :h vim.diagnostic.config for all diagnostic configuration options
|
||||||
|
diagnostic = {},
|
||||||
|
|
||||||
-- lsp settings
|
-- lsp settings
|
||||||
config.lsp = {
|
lsp = {
|
||||||
|
|
||||||
-- true/false or table of filetypes {'.ts', '.js',}
|
-- true/false or table of filetypes {'.ts', '.js',}
|
||||||
format_on_save = true,
|
format_on_save = true,
|
||||||
|
@ -55,43 +56,44 @@ config.lsp = {
|
||||||
-- See Cosmic defaults lsp/providers/tsserver.lua
|
-- See Cosmic defaults lsp/providers/tsserver.lua
|
||||||
-- If adding additional sources, be sure to also copy the defaults that you would like to preserve from lsp/providers/null_ls.lua
|
-- If adding additional sources, be sure to also copy the defaults that you would like to preserve from lsp/providers/null_ls.lua
|
||||||
ts_utils = {},
|
ts_utils = {},
|
||||||
}
|
},
|
||||||
|
|
||||||
-- See :h cmp-usage
|
|
||||||
config.autocomplete = {}
|
|
||||||
|
|
||||||
-- See https://github.com/rmagatti/auto-session#%EF%B8%8F-configuration
|
|
||||||
config.auto_session = {}
|
|
||||||
|
|
||||||
-- https://github.com/numToStr/Comment.nvim#configuration-optional
|
|
||||||
config.comments = {}
|
|
||||||
|
|
||||||
-- See https://github.com/CosmicNvim/cosmic-ui#%EF%B8%8F-configuration
|
|
||||||
config.cosmic_ui = {
|
|
||||||
-- see :h vim.diagnostic.config for all diagnostic configuration options
|
|
||||||
-- see Cosmic-ui defaults: https://github.com/CosmicNvim/cosmic-ui/blob/main/lua/cosmic-ui/diagnostics/init.lua
|
|
||||||
diagnostic = {},
|
|
||||||
}
|
|
||||||
|
|
||||||
-- See https://github.com/ray-x/lsp_signature.nvim#full-configuration-with-default-values
|
-- See https://github.com/ray-x/lsp_signature.nvim#full-configuration-with-default-values
|
||||||
config.lsp_signature = {}
|
lsp_signature = {},
|
||||||
|
|
||||||
-- See https://github.com/L3MON4D3/LuaSnip/blob/577045e9adf325e58f690f4d4b4a293f3dcec1b3/README.md#config
|
-- See https://github.com/L3MON4D3/LuaSnip/blob/577045e9adf325e58f690f4d4b4a293f3dcec1b3/README.md#config
|
||||||
config.luasnip = {}
|
luasnip = {},
|
||||||
|
|
||||||
|
-- default statusline icon
|
||||||
|
statusline = {
|
||||||
|
main_icon = '★',
|
||||||
|
},
|
||||||
|
|
||||||
-- See :h telescope.setup
|
-- See :h telescope.setup
|
||||||
config.telescope = {}
|
telescope = {},
|
||||||
|
|
||||||
|
-- theming, don't forget to run :CosmicReloadSync when changing themes
|
||||||
|
-- 'catppuccin'
|
||||||
|
-- 'dracula'
|
||||||
|
-- 'enfocado'
|
||||||
|
-- 'gruvbox'
|
||||||
|
-- 'nightfox'
|
||||||
|
-- 'nord'
|
||||||
|
-- 'onedark'
|
||||||
|
-- 'rose-pine'
|
||||||
|
theme = 'tokyonight', -- don't define or set to nil, if you want to enable your own theme in cosmic/config/plugins.lua
|
||||||
|
|
||||||
-- See https://github.com/folke/todo-comments.nvim#%EF%B8%8F-configuration
|
-- See https://github.com/folke/todo-comments.nvim#%EF%B8%8F-configuration
|
||||||
config.todo_comments = {}
|
todo_comments = {},
|
||||||
|
|
||||||
-- See :h nvim-treesitter-quickstart
|
-- See :h nvim-treesitter-quickstart
|
||||||
config.treesitter = {}
|
treesitter = {},
|
||||||
|
|
||||||
-- See :h notify.setup
|
-- See :h notify.setup
|
||||||
config.notify = {}
|
notify = {},
|
||||||
|
|
||||||
-- See :h nvim-tree.setup
|
-- See :h nvim-tree.setup
|
||||||
config.nvim_tree = {}
|
nvim_tree = {},
|
||||||
|
}
|
||||||
|
|
||||||
return config
|
return config
|
||||||
|
|
Loading…
Add table
Reference in a new issue