First, let me say that I tried to search around for an answer to this (and I will clarify where those failed).
So my problem is that when I enter the daily for for agenda, M-x Org-Agenda a, I see duplicated tasks for what I believe is anything with a deadline or scheduled timestamp.
I have tested this, and it seems normal TODOs get neglected where as anything with a timestamp, with a TODO or without, get presented twice in my daily agenda.
I have tried using M-x customize variable org-agenda-todo-ignore-timestamp, which successfully eliminates duplicates at the cost of not showing any items with a scheduled/deadline time stamp, which I would still like to see in my agenda view. Though it doesn't apply here, I also checked to see if M-x customize variable org-agenda-todo-list-sublevels was responsible.
Any ideas? I'm fairly new to org-mode and its various related functions/minor modes, so I very well could just be misusing the agenda function. I am currently using emacs24.5 but experienced it also while using emacs24.3. I'm also attaching the only code in my init.el file that involves org-mode directly besides some capture templates and use-package declarations.
I really appreciate the help!
init.el code:
;---------key bindings--------------------------- (define-key global-map "\C-cc" 'org-capture) ;--------------org mode---------------------------- (desktop-save-mode 1) (setq org-agenda-files '("")) (setq org-agenda-files (mapcar 'abbreviate-file-name (split-string (shell-command-to-string "find ~/Tresors/Personal/org-mode -name \"*.org\"") "\n"))) (setq line-spacing '0.25) (setq org-log-done 'time) (setq org-default-notes-file (concat "~/Tresors/Personal/org-mode/notes.org")) (setq org-journal-dir "~/Tresors/Personal/journal/"); note, org mode takes CcCj, CcCf,CcCb (i think as mode specific only, but fyi incase universal) (setq org-startup-indented t) (setq org-hide-leading-stars t) 
