Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit bcf95e6

Browse files
theme: remove redundant colorscheme settings
everforest set as default theme Other themese can be selected via `SPC f t` once Neovim has started
1 parent d5f02c5 commit bcf95e6

1 file changed

Lines changed: 10 additions & 11 deletions

File tree

init.lua

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,7 @@ return {
1818
},
1919

2020
-- Set colorscheme to use
21-
-- colorscheme = "astrodark",
22-
-- colorscheme = "dayfox",
2321
colorscheme = "everforest",
24-
-- colorscheme = "kanagawa", -- nice
2522

2623
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
2724
diagnostics = {
@@ -54,6 +51,9 @@ return {
5451
-- enable servers that you already have installed without mason
5552
servers = {
5653
-- "pyright"
54+
-- "clojure-lsp"
55+
-- Error when enabling clojure-lsp:
56+
-- [lspconfig] Cannot access configuration for clojure-lsp. Ensure this server is listed in `server_configurations.md` or added as a custom server.
5757
},
5858
},
5959

@@ -71,6 +71,7 @@ return {
7171
-- This function is run last and is a good place to configuring
7272
-- augroups/autocommands and custom filetypes also this just pure lua so
7373
-- anything that doesn't fit in the normal config locations above can go here
74+
7475
polish = function()
7576
-- Set up custom filetypes
7677
-- vim.filetype.add {
@@ -89,13 +90,11 @@ return {
8990
-- Comments for FileTypes
9091
--https://github.com/numToStr/Comment.nvim#%EF%B8%8F-filetypes--languages
9192
--Configure Conjure to use ;; double semi-colon characters for line comments
92-
vim.api.nvim_create_autocmd("FileType", {
93-
group = vim.api.nvim_create_augroup("comment_config", { clear = true }),
94-
pattern = { "clojure", "fennel", "lisp" },
95-
callback = function()
96-
vim.bo.commentstring = ';; %s'
97-
end,
98-
desc = "Lisp style line comment",
99-
})
93+
-- vim.api.nvim_create_autocmd("FileType", {
94+
-- group = vim.api.nvim_create_augroup("comment_config", { clear = true }),
95+
-- pattern = { "clojure", "fennel", "lisp" },
96+
-- callback = function() vim.bo.commentstring = ";; %s" end,
97+
-- desc = "Lisp style line comment",
98+
-- })
10099
end,
101100
}

0 commit comments

Comments
 (0)