Compare commits

..

3 commits

Author SHA1 Message Date
5e5dd9e4d2 Fix Os detection 2024-06-23 10:35:09 -04:00
b23fd9b050 Remove option missing from neovim 2024-06-23 10:34:51 -04:00
23b07f56d9 Restore breezy theme
- Setting background to dark and disabling colorscheme switch based on
  filetype seems to have resolved the issues.
2024-06-23 10:34:41 -04:00
2 changed files with 9 additions and 11 deletions

View file

@ -88,16 +88,12 @@ vim.opt.directory = os.getenv("HOME") .. "/.var/nvim/swp//"
-- and undo -- and undo
vim.opt.undofile = true vim.opt.undofile = true
vim.opt.undodir = os.getenv("HOME") .. "/.nvim/undodir" vim.opt.undodir = os.getenv("HOME") .. "/.nvim/undodir"
if not vim.fn.has('macunix') then
-- make pastemode more accessible
vim.opt.pastetoggle = "<F2>"
end
-- save when moving away -- save when moving away
vim.api.nvim_create_autocmd("FocusLost", {pattern = "*", command = "wa"}) vim.api.nvim_create_autocmd("FocusLost", {pattern = "*", command = "wa"})
-- make sure to set TERM to xterm-256color in terminal program or app -- make sure to set TERM to xterm-256color in terminal program or app
vim.cmd("colorscheme desert") vim.cmd("colorscheme breezy")
vim.opt.background = "dark" vim.opt.background = "dark"
vim.opt.termguicolors = true vim.opt.termguicolors = true
@ -124,15 +120,14 @@ vim.g.guioptions = guiopts
vim.opt.mouse = "nv" vim.opt.mouse = "nv"
if vim.fn.has('macunix') then if vim.loop.os_uname().sysname == 'Linux' then
vim.opt.gfn = "FiraCode Nerd Font Mono:h16"
else
vim.opt.gfn = "FiraCode Nerd Font Mono:h12" vim.opt.gfn = "FiraCode Nerd Font Mono:h12"
require('nvim-projectconfig').setup({autocmd=true})
else
vim.opt.gfn = "FiraCode Nerd Font Mono:h16"
require('nvim-projectconfig').setup()
end end
if not vim.fn.has('macunix') then
require('nvim-projectconfig').setup({autocmd=true})
end
require("trouble").setup { require("trouble").setup {
-- your configuration comes here -- your configuration comes here
-- or leave it empty to use the default settings -- or leave it empty to use the default settings

View file

@ -11,6 +11,9 @@ vim.call('plug#begin')
-- dynamic font resizing(using ctl and arrow keys -- dynamic font resizing(using ctl and arrow keys
Plug('tenxsoydev/size-matters.nvim') Plug('tenxsoydev/size-matters.nvim')
-- custom colorscheme
Plug('fneu/breezy')
-- informational -- informational
-- lightweight but sophisticated status line -- lightweight but sophisticated status line