Skip to content

Commit

Permalink
always the f colorscheme
Browse files Browse the repository at this point in the history
#2 ffs
  • Loading branch information
fedemengo committed Dec 23, 2024
1 parent ff5b847 commit 8fc77a7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions fnl/core.fnl
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
(set vim.o.incsearch true)
(set vim.o.ignorecase true)
(set vim.o.smartcase true)
(set vim.o.cmdheight 0)
(set vim.o.cmdheight 1)

(let [indent 4]
(set vim.o.shiftwidth indent)
Expand Down Expand Up @@ -155,7 +155,9 @@
(set vim.o.undofile true)

;(vim.cmd "colorscheme monokai-pro-spectrum")
(vim.cmd "colorscheme papercolor")
(match (pcall #(vim.cmd "colorscheme PaperColor"))
(true _) (vim.notify "Successfully set colorscheme to PaperColor" vim.log.levels.INFO)
(false err) (vim.notify (.. "Failed to set papercolor theme: " err) vim.log.levels.WARN))
(set vim.o.background :dark)

(vim.cmd "hi VertSplit ctermbg=NONE guibg=NONE guifg=NONE")

0 comments on commit 8fc77a7

Please sign in to comment.